(self)
| 32 | self.assertEqual(entry_point.value, 'example:main') |
| 33 | |
| 34 | def test_missing_metadata(self): |
| 35 | self.assertIsNone(distribution('example').read_text('does not exist')) |
| 36 | |
| 37 | def test_case_insensitive(self): |
| 38 | self.assertEqual(version('Example'), '21.12') |
nothing calls this directly
no test coverage detected