aboutsummaryrefslogtreecommitdiffstats
path: root/modules/uri/uri_test.go
blob: 8cadd6b918f8642d674727f2a888dc4bf0d259b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2020 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

package uri

import (
	"path/filepath"
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestReadURI(t *testing.T) {
	p, err := filepath.Abs("./uri.go")
	assert.NoError(t, err)
	f, err := Open("file://" + p)
	assert.NoError(t, err)
	defer f.Close()
}