(self)
| 6855 | class TestImportStar(TestCase): |
| 6856 | |
| 6857 | def test(self): |
| 6858 | for name in argparse.__all__: |
| 6859 | self.assertHasAttr(argparse, name) |
| 6860 | |
| 6861 | def test_all_exports_everything_but_modules(self): |
| 6862 | items = [ |
nothing calls this directly
no test coverage detected