privatize morphism

This commit is contained in:
Barak Michener 2014-09-02 18:33:28 -04:00
parent 7b8b72dc54
commit cb2caad603
2 changed files with 57 additions and 27 deletions

View file

@ -85,6 +85,12 @@ func testSet(qs graph.QuadStore) []test {
path: V(qs, "B").Out(V(qs, "predicates").Out("are")),
expect: []string{"F", "cool"},
},
{
message: "in",
path: V(qs, "D").Out("follows").And(
V(qs, "C").Out("follows")),
expect: []string{"B"},
},
}
}