mirror of
https://github.com/python/cpython.git
synced 2025-11-27 05:44:16 +00:00
bpo-33465: Use an unlikely to be built-in C extension in a test (#6797)
This commit is contained in:
parent
389a48ede9
commit
8709b236fc
1 changed files with 6 additions and 5 deletions
|
|
@ -90,13 +90,14 @@ class ImportTests(unittest.TestCase):
|
||||||
self.assertEqual(cm.exception.path, os.__file__)
|
self.assertEqual(cm.exception.path, os.__file__)
|
||||||
self.assertRegex(str(cm.exception), r"cannot import name 'i_dont_exist' from 'os' \(.*os.py\)")
|
self.assertRegex(str(cm.exception), r"cannot import name 'i_dont_exist' from 'os' \(.*os.py\)")
|
||||||
|
|
||||||
|
@cpython_only
|
||||||
def test_from_import_missing_attr_has_name_and_so_path(self):
|
def test_from_import_missing_attr_has_name_and_so_path(self):
|
||||||
import select
|
import _testcapi
|
||||||
with self.assertRaises(ImportError) as cm:
|
with self.assertRaises(ImportError) as cm:
|
||||||
from select import i_dont_exist
|
from _testcapi import i_dont_exist
|
||||||
self.assertEqual(cm.exception.name, 'select')
|
self.assertEqual(cm.exception.name, '_testcapi')
|
||||||
self.assertEqual(cm.exception.path, select.__file__)
|
self.assertEqual(cm.exception.path, _testcapi.__file__)
|
||||||
self.assertRegex(str(cm.exception), r"cannot import name 'i_dont_exist' from 'select' \(.*\.(so|pyd)\)")
|
self.assertRegex(str(cm.exception), r"cannot import name 'i_dont_exist' from '_testcapi' \(.*\.(so|pyd)\)")
|
||||||
|
|
||||||
def test_from_import_missing_attr_has_name(self):
|
def test_from_import_missing_attr_has_name(self):
|
||||||
with self.assertRaises(ImportError) as cm:
|
with self.assertRaises(ImportError) as cm:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue