bpo-19382: Adding test cases for module tabnanny (GH-851)

Testing strategy: whitebox.
This commit is contained in:
Jaysinh Shukla 2018-06-14 12:35:35 +05:30 committed by Victor Stinner
parent ab4a1988fd
commit dfa9643d29
2 changed files with 344 additions and 1 deletions

View file

@ -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: