Rewrite Gremlin's buildIterator in terms of paths

This commit is contained in:
Barak Michener 2015-10-28 21:26:29 -04:00
parent 97247ae40f
commit f74051a520
5 changed files with 246 additions and 391 deletions

View file

@ -322,6 +322,7 @@ func TestGremlin(t *testing.T) {
got := runQueryGetTag(simpleGraph, test.query, test.tag)
sort.Strings(got)
sort.Strings(test.expect)
t.Log("testing", test.message)
if !reflect.DeepEqual(got, test.expect) {
t.Errorf("Failed to %s, got: %v expected: %v", test.message, got, test.expect)
}