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)
}