You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by to...@apache.org on 2015/09/10 23:31:35 UTC

couchdb-mango git commit: Remove num_string_docs references

Repository: couchdb-mango
Updated Branches:
  refs/heads/2787-modify-testcases 87bde010f -> 6b0ab626c


Remove num_string_docs references

COUCHDB-2787


Project: http://git-wip-us.apache.org/repos/asf/couchdb-mango/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-mango/commit/6b0ab626
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-mango/tree/6b0ab626
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-mango/diff/6b0ab626

Branch: refs/heads/2787-modify-testcases
Commit: 6b0ab626cbe0a6f6bbef200579caafb6b7554f59
Parents: 87bde01
Author: Tony Sun <to...@cloudant.com>
Authored: Thu Sep 10 14:33:15 2015 -0700
Committer: Tony Sun <to...@cloudant.com>
Committed: Thu Sep 10 14:33:15 2015 -0700

----------------------------------------------------------------------
 test/06-basic-text-test.py | 1 -
 test/mango.py              | 9 ---------
 2 files changed, 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/6b0ab626/test/06-basic-text-test.py
----------------------------------------------------------------------
diff --git a/test/06-basic-text-test.py b/test/06-basic-text-test.py
index 8ed09f9..493befc 100644
--- a/test/06-basic-text-test.py
+++ b/test/06-basic-text-test.py
@@ -15,7 +15,6 @@ import mango
 import unittest
 import user_docs
 import math
-import num_string_docs
 from hypothesis import given, assume, example
 import hypothesis.strategies as st
 

http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/6b0ab626/test/mango.py
----------------------------------------------------------------------
diff --git a/test/mango.py b/test/mango.py
index 0487557..5ca8367 100644
--- a/test/mango.py
+++ b/test/mango.py
@@ -21,7 +21,6 @@ import requests
 import friend_docs
 import user_docs
 import limit_docs
-import num_string_docs
 
 
 def random_db_name():
@@ -242,11 +241,3 @@ class LimitDocsTextTests(DbPerClass):
         super(LimitDocsTextTests, klass).setUpClass()
         if has_text_service():
             limit_docs.setup(klass.db, index_type="text")
-
-class NumStringDocsTextTests(DbPerClass):
-
-    @classmethod
-    def setUpClass(klass):
-        super(NumStringDocsTextTests, klass).setUpClass()
-        if has_text_service():
-            num_string_docs.setup(klass.db, index_type="text")