TINKERPOP-1784 Added feature tests for min()

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

Branch: refs/heads/TINKERPOP-1784
Commit: 68bd490543431f889937db3d1235691cd3fbc3cc
Parents: 2070de3
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Tue Oct 24 13:36:36 2017 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Thu Nov 2 13:37:24 2017 -0400

----------------------------------------------------------------------
 gremlin-test/features/map/Min.feature | 48 ++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/68bd4905/gremlin-test/features/map/Min.feature
----------------------------------------------------------------------
diff --git a/gremlin-test/features/map/Min.feature 
b/gremlin-test/features/map/Min.feature
new file mode 100644
index 0000000..48ceeb9
--- /dev/null
+++ b/gremlin-test/features/map/Min.feature
@@ -0,0 +1,48 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+Feature: Step - min()
+
+  Scenario: g_V_age_min
+    Given the modern graph
+    And the traversal of
+      """
+      g.V().values("age").min()
+      """
+    When iterated to list
+    Then the result should be unordered
+      | d[27] |
+
+  Scenario: g_V_repeatXbothX_timesX5X_age_min
+    Given the modern graph
+    And the traversal of
+      """
+      g.V().repeat(__.both()).times(5).values("age").min()
+      """
+    When iterated to list
+    Then the result should be unordered
+      | d[27] |
+
+  Scenario: get_g_V_hasLabelXsoftwareX_group_byXnameX_byXbothE_weight_minX
+    Given the modern graph
+    And the traversal of
+      """
+      
g.V().hasLabel("software").group().by("name").by(__.bothE().values("weight").min())
+      """
+    When iterated to list
+    Then the result should be unordered
+      | m[{"ripple":1.0,"lop":0.2}] |

Reply via email to