Commit b43c5b81 authored by Jason R. Coombs's avatar Jason R. Coombs

Remove superfluous test and re-organize tests for clarity.

parent 24fa288a
...@@ -125,8 +125,6 @@ def __read_test_cases(): ...@@ -125,8 +125,6 @@ def __read_test_cases():
merge_dicts(base_attrs, { merge_dicts(base_attrs, {
'provides_extras': ['foo', 'bar'] 'provides_extras': ['foo', 'bar']
}), marks=pytest.mark.xfail(reason="provides_extras not read")), }), marks=pytest.mark.xfail(reason="provides_extras not read")),
('Missing author, missing author e-mail',
{'name': 'foo', 'version': '1.0.0'}),
('Missing author', ('Missing author',
{'name': 'foo', {'name': 'foo',
'version': '1.0.0', 'version': '1.0.0',
...@@ -135,10 +133,8 @@ def __read_test_cases(): ...@@ -135,10 +133,8 @@ def __read_test_cases():
{'name': 'foo', {'name': 'foo',
'version': '1.0.0', 'version': '1.0.0',
'author': 'Snorri Sturluson'}), 'author': 'Snorri Sturluson'}),
('Missing author', ('Missing author and e-mail',
{'name': 'foo', {'name': 'foo', 'version': '1.0.0'}),
'version': '1.0.0',
'author': 'Snorri Sturluson'}),
] ]
return test_cases return test_cases
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment