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/02 17:38:33 UTC

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

TINKERPOP-1784 Added feature tests for max()


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

Branch: refs/heads/TINKERPOP-1784
Commit: 78b33b15287d85d361ed2787c2d99b7898560530
Parents: 68bd490
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Tue Oct 24 13:51:30 2017 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Thu Nov 2 13:37:24 2017 -0400

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


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/78b33b15/gremlin-test/features/map/Max.feature
----------------------------------------------------------------------
diff --git a/gremlin-test/features/map/Max.feature b/gremlin-test/features/map/Max.feature
new file mode 100644
index 0000000..c36177d
--- /dev/null
+++ b/gremlin-test/features/map/Max.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 - max()
+
+  Scenario: g_V_age_max
+    Given the modern graph
+    And the traversal of
+      """
+      g.V().values("age").max()
+      """
+    When iterated to list
+    Then the result should be unordered
+      | d[35] |
+
+  Scenario: g_V_repeatXbothX_timesX5X_age_max
+    Given the modern graph
+    And the traversal of
+      """
+      g.V().repeat(__.both()).times(5).values("age").max()
+      """
+    When iterated to list
+    Then the result should be unordered
+      | d[35] |
+
+  Scenario: get_g_V_hasLabelXsoftwareX_group_byXnameX_byXbothE_weight_maxX
+    Given the modern graph
+    And the traversal of
+      """
+      g.V().hasLabel("software").group().by("name").by(__.bothE().values("weight").max())
+      """
+    When iterated to list
+    Then the result should be unordered
+      | m[{"ripple":1.0,"lop":0.4}] |