blob: 4af4de6839bce3984cc42b4c7c4447817b10d5fd [file] [log] [blame]
package shared_tests
import (
"context"
"testing"
"go.skia.org/infra/go/testutils/unittest"
"go.skia.org/infra/go/vfs"
)
func TestLocal(t *testing.T) {
unittest.MediumTest(t)
ctx := context.Background()
tmp := MakeTestFiles(t)
fs := vfs.Local(tmp)
TestFS(ctx, t, fs)
}