(self)
| 712 | pass |
| 713 | |
| 714 | def test_import_mapping(self): |
| 715 | for module3, module2 in REVERSE_IMPORT_MAPPING.items(): |
| 716 | with self.subTest((module3, module2)): |
| 717 | try: |
| 718 | getmodule(module3) |
| 719 | except ImportError: |
| 720 | pass |
| 721 | if module3[:1] != '_': |
| 722 | self.assertIn(module2, IMPORT_MAPPING) |
| 723 | self.assertEqual(IMPORT_MAPPING[module2], module3) |
| 724 | |
| 725 | def test_name_mapping(self): |
| 726 | for (module3, name3), (module2, name2) in REVERSE_NAME_MAPPING.items(): |
nothing calls this directly
no test coverage detected