diff options
author | Brett Cannon <brett@python.org> | 2013-10-25 16:33:59 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-10-25 16:33:59 (GMT) |
commit | b3d6afff2be489a6e6aefbd0826eeacbe565f6d7 (patch) | |
tree | a38316d4dbfe83e2505fc622b6b382e8feb741af /Lib/test/test_importlib | |
parent | c60dd5b0d4eee2bd239b91565d2ecaa582c4fca5 (diff) | |
download | cpython-b3d6afff2be489a6e6aefbd0826eeacbe565f6d7.zip cpython-b3d6afff2be489a6e6aefbd0826eeacbe565f6d7.tar.gz cpython-b3d6afff2be489a6e6aefbd0826eeacbe565f6d7.tar.bz2 |
Issue #16803: Stop having test.test_importlib.abc ABCs inherit from
unittest.TestCase in prep of running tests under frozen and source
importlib.
Diffstat (limited to 'Lib/test/test_importlib')
-rw-r--r-- | Lib/test/test_importlib/abc.py | 4 | ||||
-rw-r--r-- | Lib/test/test_importlib/builtin/test_finder.py | 9 | ||||
-rw-r--r-- | Lib/test/test_importlib/builtin/test_loader.py | 2 | ||||
-rw-r--r-- | Lib/test/test_importlib/extension/test_finder.py | 2 | ||||
-rw-r--r-- | Lib/test/test_importlib/extension/test_loader.py | 2 | ||||
-rw-r--r-- | Lib/test/test_importlib/frozen/test_finder.py | 2 | ||||
-rw-r--r-- | Lib/test/test_importlib/frozen/test_loader.py | 2 | ||||
-rw-r--r-- | Lib/test/test_importlib/source/test_file_loader.py | 7 | ||||
-rw-r--r-- | Lib/test/test_importlib/source/test_finder.py | 2 |
9 files changed, 16 insertions, 16 deletions
diff --git a/Lib/test/test_importlib/abc.py b/Lib/test/test_importlib/abc.py index 2c17ac3..b9ff344 100644 --- a/Lib/test/test_importlib/abc.py +++ b/Lib/test/test_importlib/abc.py @@ -2,7 +2,7 @@ import abc import unittest -class FinderTests(unittest.TestCase, metaclass=abc.ABCMeta): +class FinderTests(metaclass=abc.ABCMeta): """Basic tests for a finder to pass.""" @@ -39,7 +39,7 @@ class FinderTests(unittest.TestCase, metaclass=abc.ABCMeta): pass -class LoaderTests(unittest.TestCase, metaclass=abc.ABCMeta): +class LoaderTests(metaclass=abc.ABCMeta): @abc.abstractmethod def test_module(self): diff --git a/Lib/test/test_importlib/builtin/test_finder.py b/Lib/test/test_importlib/builtin/test_finder.py index 146538d..4280217 100644 --- a/Lib/test/test_importlib/builtin/test_finder.py +++ b/Lib/test/test_importlib/builtin/test_finder.py @@ -6,7 +6,7 @@ from . import util as builtin_util import sys import unittest -class FinderTests(abc.FinderTests): +class FinderTests(unittest.TestCase, abc.FinderTests): """Test find_module() for built-in modules.""" @@ -46,10 +46,5 @@ class FinderTests(abc.FinderTests): -def test_main(): - from test.support import run_unittest - run_unittest(FinderTests) - - if __name__ == '__main__': - test_main() + unittest.main() diff --git a/Lib/test/test_importlib/builtin/test_loader.py b/Lib/test/test_importlib/builtin/test_loader.py index 8e186e7..8eba4e8 100644 --- a/Lib/test/test_importlib/builtin/test_loader.py +++ b/Lib/test/test_importlib/builtin/test_loader.py @@ -9,7 +9,7 @@ import types import unittest -class LoaderTests(abc.LoaderTests): +class LoaderTests(unittest.TestCase, abc.LoaderTests): """Test load_module() for built-in modules.""" diff --git a/Lib/test/test_importlib/extension/test_finder.py b/Lib/test/test_importlib/extension/test_finder.py index a63cfdb..8fa3270 100644 --- a/Lib/test/test_importlib/extension/test_finder.py +++ b/Lib/test/test_importlib/extension/test_finder.py @@ -4,7 +4,7 @@ from . import util import unittest -class FinderTests(abc.FinderTests): +class FinderTests(unittest.TestCase, abc.FinderTests): """Test the finder for extension modules.""" diff --git a/Lib/test/test_importlib/extension/test_loader.py b/Lib/test/test_importlib/extension/test_loader.py index ca5af20..1257625 100644 --- a/Lib/test/test_importlib/extension/test_loader.py +++ b/Lib/test/test_importlib/extension/test_loader.py @@ -8,7 +8,7 @@ import sys import unittest -class LoaderTests(abc.LoaderTests): +class LoaderTests(unittest.TestCase, abc.LoaderTests): """Test load_module() for extension modules.""" diff --git a/Lib/test/test_importlib/frozen/test_finder.py b/Lib/test/test_importlib/frozen/test_finder.py index fa0c2a0..1d37c72 100644 --- a/Lib/test/test_importlib/frozen/test_finder.py +++ b/Lib/test/test_importlib/frozen/test_finder.py @@ -4,7 +4,7 @@ from .. import abc import unittest -class FinderTests(abc.FinderTests): +class FinderTests(unittest.TestCase, abc.FinderTests): """Test finding frozen modules.""" diff --git a/Lib/test/test_importlib/frozen/test_loader.py b/Lib/test/test_importlib/frozen/test_loader.py index 3e80138..eb1f016 100644 --- a/Lib/test/test_importlib/frozen/test_loader.py +++ b/Lib/test/test_importlib/frozen/test_loader.py @@ -7,7 +7,7 @@ from test.support import captured_stdout import types -class LoaderTests(abc.LoaderTests): +class LoaderTests(unittest.TestCase, abc.LoaderTests): def test_module(self): with util.uncache('__hello__'), captured_stdout() as stdout: diff --git a/Lib/test/test_importlib/source/test_file_loader.py b/Lib/test/test_importlib/source/test_file_loader.py index 66ad96e..9e035ea 100644 --- a/Lib/test/test_importlib/source/test_file_loader.py +++ b/Lib/test/test_importlib/source/test_file_loader.py @@ -19,7 +19,7 @@ import unittest from test.support import make_legacy_pyc, unload -class SimpleTest(unittest.TestCase): +class SimpleTest(unittest.TestCase, abc.LoaderTests): """Should have no issue importing a source module [basic]. And if there is a syntax error, it should raise a SyntaxError [syntax error]. @@ -177,6 +177,11 @@ class SimpleTest(unittest.TestCase): # The pyc file was created. os.stat(compiled) + def test_unloadable(self): + loader = machinery.SourceFileLoader('good name', {}) + with self.assertRaises(ImportError): + loader.load_module('bad name') + class BadBytecodeTest(unittest.TestCase): diff --git a/Lib/test/test_importlib/source/test_finder.py b/Lib/test/test_importlib/source/test_finder.py index 2d70691..9d6cec0 100644 --- a/Lib/test/test_importlib/source/test_finder.py +++ b/Lib/test/test_importlib/source/test_finder.py @@ -13,7 +13,7 @@ import unittest import warnings -class FinderTests(abc.FinderTests): +class FinderTests(unittest.TestCase, abc.FinderTests): """For a top-level module, it should just be found directly in the directory being searched. This is true for a directory with source |