(self)
| 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')) |
| 42 | |
| 43 | def test_case_insensitive(self): |
| 44 | self.assertEqual(version('Example'), '21.12') |
nothing calls this directly
no test coverage detected