Skip to content

Commit

Permalink
add test case
Browse files Browse the repository at this point in the history
  • Loading branch information
nevermore3 committed Dec 21, 2023
1 parent 9b7d06d commit b95cdb2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/tck/features/path/AllPath.feature
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,16 @@ Feature: All Path
Then the result should be, in any order, with relax comparison:
| count(*) |
| 10 |
When executing query:
"""
lookup on player where player.age>20 YIELD id(vertex) as vid
| go 1 step from $-.vid over * where "player" in labels($$) yield distinct id($$) as dst,$-.vid as src
| find noloop path from $-.src to $-.dst over * upto 1 step yield path as p | limit 10000,10
| yield count(*)
"""
Then the result should be, in any order, with relax comparison:
| count(*) |
| 0 |

Scenario: [1] ALL PATH REVERSELY
When executing query:
Expand Down

0 comments on commit b95cdb2

Please sign in to comment.