We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7226b04 commit db89a19Copy full SHA for db89a19
traversal-tests/src/test/scala/overflowdb/traversal/PathTraversalTests.scala
@@ -57,6 +57,11 @@ class PathTraversalTests extends AnyWordSpec with ExampleGraphSetup {
57
Seq(center, r1, "R1"))
58
}
59
60
+ "collectAll: includes intermediate results (this behavior is undesired)" in {
61
+ centerTrav.enablePathTracking.collectAll[Thing].path.toList shouldBe List(
62
+ Seq(center, center))
63
+ }
64
+
65
"filter" in {
66
centerTrav.enablePathTracking.followedBy.nameStartsWith("R").followedBy.path.toSetMutable shouldBe Set(
67
Seq(center, r1, r2))
0 commit comments