diff options
Diffstat (limited to 'Lib/test/test_import.py')
-rw-r--r-- | Lib/test/test_import.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py index 5751901..f654c33 100644 --- a/Lib/test/test_import.py +++ b/Lib/test/test_import.py @@ -265,6 +265,14 @@ class ImportTests(unittest.TestCase): """)) script_helper.assert_python_ok(testfn) + def test_bug7732(self): + source = TESTFN + '.py' + os.mkdir(source) + try: + self.assertRaises(IOError, imp.find_module, TESTFN, ["."]) + finally: + os.rmdir(source) + class PycRewritingTests(unittest.TestCase): # Test that the `co_filename` attribute on code objects always points |