mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
bpo-19382: Adding test cases for module tabnanny (GH-851)
Testing strategy: whitebox.
This commit is contained in:
parent
ab4a1988fd
commit
dfa9643d29
2 changed files with 344 additions and 1 deletions
|
@ -6,7 +6,7 @@ import unittest
|
|||
|
||||
class TestUntestedModules(unittest.TestCase):
|
||||
def test_untested_modules_can_be_imported(self):
|
||||
untested = ('encodings', 'formatter', 'tabnanny')
|
||||
untested = ('encodings', 'formatter')
|
||||
with support.check_warnings(quiet=True):
|
||||
for name in untested:
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue