vise/go/resource/fs_test.go

12 lines
142 B
Go
Raw Normal View History

2023-03-31 11:52:04 +02:00
package resource
import (
"context"
"testing"
)
func TestNewFs(t *testing.T) {
n := NewFsResource("./testdata", context.TODO())
_ = n
}