bring the path test in line with the gremlin test, add Back()

This commit is contained in:
Barak Michener 2015-10-28 19:15:57 -04:00
parent bcbdb1f82a
commit b91b7ab824
4 changed files with 130 additions and 63 deletions

View file

@ -262,14 +262,14 @@ var testQueries = []struct {
query: `
g.V().InPredicates().All()
`,
expect: []string{"follows", "status"},
expect: []string{"are", "follows", "status"},
},
{
message: "list all out predicates",
query: `
g.V().OutPredicates().All()
`,
expect: []string{"follows", "status"},
expect: []string{"are", "follows", "status"},
},
}