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 2015/02/19 17:38:11 UTC

[2/2] incubator-tinkerpop git commit: exposed an order test that is available to Groovy.

exposed an order test that is available to Groovy.


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

Branch: refs/heads/master
Commit: 5b11b2d55cc99fee2c67630d1e4a0d035a3c5a28
Parents: bf60f93
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Thu Feb 19 08:47:19 2015 -0700
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Thu Feb 19 09:38:06 2015 -0700

----------------------------------------------------------------------
 .../graph/traversal/step/map/GroovyOrderTest.groovy      | 11 +++++++++++
 1 file changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/5b11b2d5/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/graph/traversal/step/map/GroovyOrderTest.groovy
----------------------------------------------------------------------
diff --git a/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/graph/traversal/step/map/GroovyOrderTest.groovy b/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/graph/traversal/step/map/GroovyOrderTest.groovy
index f0a552f..22062be 100644
--- a/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/graph/traversal/step/map/GroovyOrderTest.groovy
+++ b/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/graph/traversal/step/map/GroovyOrderTest.groovy
@@ -18,8 +18,10 @@
  */
 package org.apache.tinkerpop.gremlin.process.graph.traversal.step.map
 
+import org.apache.tinkerpop.gremlin.LoadGraphWith
 import org.apache.tinkerpop.gremlin.process.AbstractGremlinProcessTest
 import org.apache.tinkerpop.gremlin.process.ComputerTestHelper
+import org.apache.tinkerpop.gremlin.process.IgnoreEngine
 import org.apache.tinkerpop.gremlin.process.Scope
 import org.apache.tinkerpop.gremlin.process.Traversal
 import org.apache.tinkerpop.gremlin.process.TraversalEngine
@@ -29,6 +31,8 @@ import org.apache.tinkerpop.gremlin.structure.Order
 import org.apache.tinkerpop.gremlin.structure.Vertex
 import org.junit.Test
 
+import static org.apache.tinkerpop.gremlin.LoadGraphWith.GraphData.MODERN
+
 /**
  * @author Marko A. Rodriguez (http://markorodriguez.com)
  */
@@ -177,5 +181,12 @@ public abstract class GroovyOrderTest {
             // override with nothing until the test itself is supported
             return null
         }
+
+        @Test
+        @LoadGraphWith(MODERN)
+        @Override
+        public void g_V_name_order_byXa1_b1X_byXb2_a2X() {
+            super.g_V_name_order_byXa1_b1X_byXb2_a2X();
+        }
     }
 }