(self)
| 33 | self.assertEqual({'kw': 'kw'}, loader.kwargs) |
| 34 | |
| 35 | def test_validation(self): |
| 36 | # No exec_module(), no lazy loading. |
| 37 | with self.assertRaises(TypeError): |
| 38 | util.LazyLoader.factory(object) |
| 39 | |
| 40 | |
| 41 | class TestingImporter(abc.MetaPathFinder, abc.Loader): |
nothing calls this directly
no test coverage detected