(self)
| 31 | version('definitely-not-installed') |
| 32 | |
| 33 | def test_zip_entry_points(self): |
| 34 | scripts = entry_points(group='console_scripts') |
| 35 | entry_point = scripts['example'] |
| 36 | self.assertEqual(entry_point.value, 'example:main') |
| 37 | entry_point = scripts['Example'] |
| 38 | self.assertEqual(entry_point.value, 'example:main') |
| 39 | |
| 40 | def test_missing_metadata(self): |
| 41 | self.assertIsNone(distribution('example').read_text('does not exist')) |
nothing calls this directly
no test coverage detected