kenhuuu commented on code in PR #3241:
URL: https://github.com/apache/tinkerpop/pull/3241#discussion_r2436742647
##########
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/filter/Range.feature:
##########
@@ -411,3 +411,181 @@ Feature: Step - range()
| result |
| l[d[2].i] |
| l[d[5].i] |
+
+ Scenario:
g_withoutStrategiesXRepeatUnrollStrategyX_VX5X_repeatXlimitX1X_inX_timesX2X_valuesXnameX
+ Given the modern graph
+ And using the parameter vid5 defined as "v[ripple].id"
+ And the traversal of
+ """
+
g.withoutStrategies(RepeatUnrollStrategy).V(vid5).repeat(limit(1).in()).times(2).values("name")
+ """
+ When iterated to list
+ Then the result should be unordered
+ | result |
+ | marko |
+
+ Scenario:
g_withoutStrategiesXRepeatUnrollStrategyX_VX5X_repeatXlimitX1X_inX_untilXloopsXisX2XXX_valuesXnameX
+ Given the modern graph
+ And using the parameter vid5 defined as "v[ripple].id"
+ And the traversal of
+ """
+
g.withoutStrategies(RepeatUnrollStrategy).V(vid5).repeat(limit(1).in()).until(loops().is(2)).values("name")
+ """
+ When iterated to list
+ Then the result should be unordered
+ | result |
+ | marko |
+
+ Scenario:
g_withoutStrategiesXRepeatUnrollStrategyX_VX5X_limitX1X_in_limitX1X_in_valuesXnameX
+ Given the modern graph
+ And using the parameter vid5 defined as "v[ripple].id"
+ And the traversal of
+ """
+
g.withoutStrategies(RepeatUnrollStrategy).V(vid5).limit(1).in().limit(1).in().values("name")
Review Comment:
Nit: Usage of `withoutStrategies(RepeatUnrollStrategy)` even though there is
no `repeat()`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]