summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-07-07 12:18:22 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-07-07 12:18:22 (GMT)
commit11116da935760bb5ff02a450708f56d3b36b7556 (patch)
tree9584d5e72bf5b180863437c459b4f84dd21b1cf1 /Lib/test
parent6f1435c939f1c2a2a1a835d8c48e085be1d82682 (diff)
parent0a0d1da987118e11bc9c28937817facdcc9801cb (diff)
downloadcpython-11116da935760bb5ff02a450708f56d3b36b7556.zip
cpython-11116da935760bb5ff02a450708f56d3b36b7556.tar.gz
cpython-11116da935760bb5ff02a450708f56d3b36b7556.tar.bz2
Merge heads
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_modulefinder.py16
1 files changed, 12 insertions, 4 deletions
diff --git a/Lib/test/test_modulefinder.py b/Lib/test/test_modulefinder.py
index ed30d6f..b5fdcc8 100644
--- a/Lib/test/test_modulefinder.py
+++ b/Lib/test/test_modulefinder.py
@@ -245,11 +245,12 @@ def create_package(source):
class ModuleFinderTest(unittest.TestCase):
- def _do_test(self, info, report=False):
+ def _do_test(self, info, report=False, debug=0, replace_paths=[]):
import_this, modules, missing, maybe_missing, source = info
create_package(source)
try:
- mf = modulefinder.ModuleFinder(path=TEST_PATH)
+ mf = modulefinder.ModuleFinder(path=TEST_PATH, debug=debug,
+ replace_paths=replace_paths)
mf.import_hook(import_this)
if report:
mf.report()
@@ -308,9 +309,16 @@ class ModuleFinderTest(unittest.TestCase):
os.remove(source_path)
self._do_test(bytecode_test)
+ def test_replace_paths(self):
+ old_path = os.path.join(TEST_DIR, 'a', 'module.py')
+ new_path = os.path.join(TEST_DIR, 'a', 'spam.py')
+ with support.captured_stdout() as output:
+ self._do_test(maybe_test, debug=2,
+ replace_paths=[(old_path, new_path)])
+ output = output.getvalue()
+ expected = "co_filename '%s' changed to '%s'" % (old_path, new_path)
+ self.assertIn(expected, output)
-def test_main():
- support.run_unittest(ModuleFinderTest)
if __name__ == "__main__":
unittest.main()