package swampfile import ( "caj-larsson/bog/dataswamp/swampfile" "path" "testing" ) func TestFsFileRepo(t *testing.T) { var fac = func() swampfile.Repository { r := t.TempDir() d := path.Join(r, "fs") repo := Repository{d} return &repo } swampfile.RepositoryContract(fac, t) }