summaryrefslogtreecommitdiff
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
commitfe683199089bee4a8d018b981821911cb66523f9 (patch)
treeeb0ec6acdb418b5509ffe4441fc21c43eaa5b756
parent7650f8beb6cf9d5d8c8f722cf09df888d278af86 (diff)
downloadsix-fe683199089bee4a8d018b981821911cb66523f9.tar.gz
consolidate and rename tests
-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)