(self)
| 272 | assert len(md['classifier']) == 2 |
| 273 | |
| 274 | def test_as_json_odd_case(self): |
| 275 | self.make_uppercase() |
| 276 | md = metadata('distinfo-pkg').json |
| 277 | assert 'name' in md |
| 278 | assert len(md['requires_dist']) == 2 |
| 279 | assert md['keywords'] == ['SAMPLE', 'PACKAGE'] |
| 280 | |
| 281 | |
| 282 | class LegacyDots(fixtures.DistInfoPkgWithDotLegacy, unittest.TestCase): |
nothing calls this directly
no test coverage detected