summaryrefslogtreecommitdiff
path: root/test_six.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-01-04 17:39:51 -0600
committerBenjamin Peterson <benjamin@python.org>2014-01-04 17:39:51 -0600
commit3e982b5b0247c9c736881da0c01be885a6ebb100 (patch)
treeeb0ec6acdb418b5509ffe4441fc21c43eaa5b756 /test_six.py
parent3fb9adb6296ccd715b9e3638bd99577cf8397e0b (diff)
downloadsix-git-3e982b5b0247c9c736881da0c01be885a6ebb100.tar.gz
consolidate and rename tests
Diffstat (limited to 'test_six.py')
-rw-r--r--test_six.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/test_six.py b/test_six.py
index 14f0e7e..2bacd0e 100644
--- a/test_six.py
+++ b/test_six.py
@@ -185,12 +185,9 @@ def test_import_moves_error_3():
from six.moves.urllib_parse import urljoin
-def test_from_six_moves_queue_import_Queue():
+def test_from_imports():
from six.moves.queue import Queue
assert isinstance(Queue, types.ClassType)
-
-
-def test_from_six_moves_configparser_import_ConfigParser():
from six.moves.configparser import ConfigParser
assert isinstance(ConfigParser, types.ClassType)