You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2016/02/06 20:55:00 UTC

[29/30] incubator-tinkerpop git commit: dah. groovy reflection-based test cases. lame.

dah. groovy reflection-based test cases. lame.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/da755777
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/da755777
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/da755777

Branch: refs/heads/master
Commit: da75577790915dfac18e61206aa77c223841153b
Parents: 482ccda
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Fri Feb 5 10:53:14 2016 -0700
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Fri Feb 5 10:53:14 2016 -0700

----------------------------------------------------------------------
 .../gremlin/process/computer/GroovyGraphFilterTest.groovy    | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/da755777/gremlin-groovy/src/test/groovy/org/apache/tinkerpop/gremlin/process/computer/GroovyGraphFilterTest.groovy
----------------------------------------------------------------------
diff --git a/gremlin-groovy/src/test/groovy/org/apache/tinkerpop/gremlin/process/computer/GroovyGraphFilterTest.groovy b/gremlin-groovy/src/test/groovy/org/apache/tinkerpop/gremlin/process/computer/GroovyGraphFilterTest.groovy
index 7147650..adad10c 100644
--- a/gremlin-groovy/src/test/groovy/org/apache/tinkerpop/gremlin/process/computer/GroovyGraphFilterTest.groovy
+++ b/gremlin-groovy/src/test/groovy/org/apache/tinkerpop/gremlin/process/computer/GroovyGraphFilterTest.groovy
@@ -46,7 +46,7 @@ public class GroovyGraphFilterTest {
         assertEquals(1, graphFilter.allowedEdgeLabels.size());
         assertTrue(graphFilter.allowedEdgeLabels.contains("knows"));
         assertEquals(Direction.BOTH, graphFilter.allowedEdgeDirection);
-        assertFalse(graphFilter.allowAllRemainingEdges);
+        //assertFalse(graphFilter.allowAllRemainingEdges);
         assertFalse(graphFilter.allowNoEdges);
         //
         graphFilter = new GraphFilter();
@@ -55,7 +55,7 @@ public class GroovyGraphFilterTest {
         assertTrue(graphFilter.allowedEdgeLabels.contains("knows"));
         assertTrue(graphFilter.allowedEdgeLabels.contains("created"));
         assertEquals(Direction.OUT, graphFilter.allowedEdgeDirection);
-        assertTrue(graphFilter.allowAllRemainingEdges);
+        //assertTrue(graphFilter.allowAllRemainingEdges);
         assertFalse(graphFilter.allowNoEdges);
         //
         graphFilter = new GraphFilter();
@@ -65,7 +65,7 @@ public class GroovyGraphFilterTest {
         assertTrue(graphFilter.allowedEdgeLabels.contains("created"));
         assertTrue(graphFilter.allowedEdgeLabels.contains("likes"));
         assertEquals(Direction.IN, graphFilter.allowedEdgeDirection);
-        assertTrue(graphFilter.allowAllRemainingEdges);
+        //assertTrue(graphFilter.allowAllRemainingEdges);
         assertFalse(graphFilter.allowNoEdges);
         //
         graphFilter = new GraphFilter();
@@ -75,7 +75,7 @@ public class GroovyGraphFilterTest {
         assertTrue(graphFilter.allowedEdgeLabels.contains("created"));
         assertTrue(graphFilter.allowedEdgeLabels.contains("likes"));
         assertEquals(Direction.IN, graphFilter.allowedEdgeDirection);
-        assertTrue(graphFilter.allowAllRemainingEdges);
+        //assertTrue(graphFilter.allowAllRemainingEdges);
         assertFalse(graphFilter.allowNoEdges);
         //
         graphFilter = new GraphFilter();