(self)
| 71 | importlib.import_module('does_not_exist') |
| 72 | |
| 73 | def test_resolve(self): |
| 74 | ep = entry_points(group='entries')['main'] |
| 75 | self.assertEqual(ep.load().__name__, "main") |
| 76 | |
| 77 | def test_entrypoint_with_colon_in_name(self): |
| 78 | ep = entry_points(group='entries')['ns:sub'] |
nothing calls this directly
no test coverage detected