You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2017/11/11 00:56:19 UTC

[15/50] tinkerpop git commit: TINKERPOP-1784 Added feature tests for min()

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/b6f625f6
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/b6f625f6
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/b6f625f6

Branch: refs/heads/TINKERPOP-1784
Commit: b6f625f682dad949e91972d490d5a24591244ede
Parents: ce0fd3c
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Tue Oct 24 13:36:36 2017 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Fri Nov 10 19:55:20 2017 -0500

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


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/b6f625f6/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}] |