mirror of
https://github.com/python/cpython.git
synced 2025-10-15 19:29:46 +00:00
Issue #11049: fix test_forget on installed Python - add os.curdir to sys.path
This commit is contained in:
parent
4e36d5ae88
commit
2b6ee28630
1 changed files with 2 additions and 0 deletions
|
@ -58,6 +58,7 @@ class TestSupport(unittest.TestCase):
|
||||||
mod_filename = TESTFN + '.py'
|
mod_filename = TESTFN + '.py'
|
||||||
with open(mod_filename, 'w') as f:
|
with open(mod_filename, 'w') as f:
|
||||||
print('foo = 1', file=f)
|
print('foo = 1', file=f)
|
||||||
|
sys.path.insert(0, os.curdir)
|
||||||
try:
|
try:
|
||||||
mod = __import__(TESTFN)
|
mod = __import__(TESTFN)
|
||||||
self.assertIn(TESTFN, sys.modules)
|
self.assertIn(TESTFN, sys.modules)
|
||||||
|
@ -65,6 +66,7 @@ class TestSupport(unittest.TestCase):
|
||||||
support.forget(TESTFN)
|
support.forget(TESTFN)
|
||||||
self.assertNotIn(TESTFN, sys.modules)
|
self.assertNotIn(TESTFN, sys.modules)
|
||||||
finally:
|
finally:
|
||||||
|
del sys.path[0]
|
||||||
support.unlink(mod_filename)
|
support.unlink(mod_filename)
|
||||||
|
|
||||||
def test_HOST(self):
|
def test_HOST(self):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue