Sign in
skia
/
buildbot.git
/
8d2feed4456e1230fc28648b6434922d2c3d1f57
/
.
/
go
/
vfs
/
shared_tests
/
local_test.go
blob: e2be97dc92c7844a318073157a8019286b3ad66c [
file
] [
log
] [
blame
]
package shared_tests
import (
"context"
"testing"
"go.skia.org/infra/go/vfs"
)
func TestLocal(t *testing.T) {
ctx := context.Background()
tmp := MakeTestFiles(t)
fs := vfs.Local(tmp)
TestFS(ctx, t, fs)
}