Commit 997487d5 authored by Brett Cannon's avatar Brett Cannon

Issue #7732: Move an imp.find_module test from test_import to

test_imp.
parent abb18af3
......@@ -273,6 +273,17 @@ class ImportTests(unittest.TestCase):
return
imp.load_module(name, None, *found[1:])
@unittest.skipIf(sys.dont_write_bytecode,
"test meaningful only when writing bytecode")
def test_bug7732(self):
source = support.TESTFN + '.py'
os.mkdir(source)
try:
self.assertRaisesRegex(ImportError, '^No module',
imp.find_module, support.TESTFN, ["."])
finally:
os.rmdir(source)
class ReloadTests(unittest.TestCase):
......
......@@ -127,16 +127,6 @@ class ImportTests(unittest.TestCase):
finally:
del sys.path[0]
@skip_if_dont_write_bytecode
def test_bug7732(self):
source = TESTFN + '.py'
os.mkdir(source)
try:
self.assertRaisesRegex(ImportError, '^No module',
imp.find_module, TESTFN, ["."])
finally:
os.rmdir(source)
def test_module_with_large_stack(self, module='longlist'):
# Regression test for http://bugs.python.org/issue561858.
filename = module + '.py'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment