diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-01-04 17:39:51 -0600 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-01-04 17:39:51 -0600 |
commit | fe683199089bee4a8d018b981821911cb66523f9 (patch) | |
tree | eb0ec6acdb418b5509ffe4441fc21c43eaa5b756 | |
parent | 7650f8beb6cf9d5d8c8f722cf09df888d278af86 (diff) | |
download | six-fe683199089bee4a8d018b981821911cb66523f9.tar.gz |
consolidate and rename tests
-rw-r--r-- | test_six.py | 5 |
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) |