diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-03-15 21:14:59 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-03-15 21:14:59 -0400 |
commit | b6076bee61984e6e05bf0d02e1daf09f0469e526 (patch) | |
tree | d662f0bbaf903bfe7b0751c4699f4dd0ee031553 /setuptools/tests/test_dist.py | |
parent | 24fa288a98a14e6ec57b996b151a48203322c936 (diff) | |
download | external_python_setuptools-b6076bee61984e6e05bf0d02e1daf09f0469e526.tar.gz external_python_setuptools-b6076bee61984e6e05bf0d02e1daf09f0469e526.tar.bz2 external_python_setuptools-b6076bee61984e6e05bf0d02e1daf09f0469e526.zip |
Add test capturing use-case for normalized version. Ref #308.
Diffstat (limited to 'setuptools/tests/test_dist.py')
-rw-r--r-- | setuptools/tests/test_dist.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/setuptools/tests/test_dist.py b/setuptools/tests/test_dist.py index 6e8c45fd..26c271b1 100644 --- a/setuptools/tests/test_dist.py +++ b/setuptools/tests/test_dist.py @@ -139,6 +139,13 @@ def __read_test_cases(): {'name': 'foo', 'version': '1.0.0', 'author': 'Snorri Sturluson'}), + ( + 'Normalized version', + dict( + name='foo', + version='1.0.0a', + ), + ), ] return test_cases |