blob: d37a7e5cfc5d952169f80d4206a3753e14a0dd22 [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, cleanup := MakeTestFiles(t)
defer cleanup()
fs := vfs.Local(tmp)
TestFS(ctx, t, fs)
}