Sign in
skia
/
buildbot.git
/
229f5d3121ddd284bca76ec17c36fc8ed82d3aa7
/
.
/
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)
}