We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bcd887 commit 008a079Copy full SHA for 008a079
tests/test_api.py
@@ -252,13 +252,15 @@ def test_as_json(self):
252
assert md['keywords'] == ['sample', 'package']
253
desc = md['description']
254
assert desc.startswith('Once upon a time\nThere was')
255
+ assert len(md['requires_dist']) == 2
256
257
def test_as_json_egg_info(self):
258
md = metadata('egginfo-pkg').json
259
assert 'name' in md
260
261
262
263
+ assert len(md['classifier']) == 2
264
265
266
class LegacyDots(fixtures.DistInfoPkgWithDotLegacy, unittest.TestCase):
0 commit comments