diff options
Diffstat (limited to 'modules/uri/uri_test.go')
-rw-r--r-- | modules/uri/uri_test.go | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/modules/uri/uri_test.go b/modules/uri/uri_test.go new file mode 100644 index 0000000000..8cadd6b918 --- /dev/null +++ b/modules/uri/uri_test.go @@ -0,0 +1,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() +} |