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/05/13 00:01:38 UTC

incubator-tinkerpop git commit: deleted GremlinLoaderTest as mean() is no longer avaialbable.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master 0c64a4c0d -> 5b2406460


deleted GremlinLoaderTest as mean()  is no longer avaialbable.


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

Branch: refs/heads/master
Commit: 5b24064605149adc3967e072886c2301696866c1
Parents: 0c64a4c
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Tue May 12 16:01:29 2015 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Tue May 12 16:01:29 2015 -0600

----------------------------------------------------------------------
 .../groovy/loaders/GremlinLoaderTest.groovy     | 34 --------------------
 1 file changed, 34 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/5b240646/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/groovy/loaders/GremlinLoaderTest.groovy
----------------------------------------------------------------------
diff --git a/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/groovy/loaders/GremlinLoaderTest.groovy b/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/groovy/loaders/GremlinLoaderTest.groovy
deleted file mode 100644
index 2b87e6a..0000000
--- a/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/groovy/loaders/GremlinLoaderTest.groovy
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * 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.
- */
-package org.apache.tinkerpop.gremlin.groovy.loaders
-
-import org.apache.tinkerpop.gremlin.AbstractGremlinTest
-import org.junit.Test
-
-import static org.junit.Assert.assertEquals
-
-/**
- * @author Stephen Mallette (http://stephen.genoprime.com)
- */
-class GremlinLoaderTest extends AbstractGremlinTest {
-    @Test
-    public void shouldCalculateMean() {
-        assertEquals(25.0d, [10, 20, 30, 40].mean(), 0.00001d)
-    }
-}