diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2017-01-01 10:08:00 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-01-01 10:08:00 -0500 |
| commit | 249f870f2c6fb60734e9db34e44f7e44cd35c914 (patch) | |
| tree | 508d2b79d7b32a22604c78b5e827402978586beb /setuptools/tests | |
| parent | ca8f8ca70d8f335f70ffe4023369523c8b61adca (diff) | |
| download | external_python_setuptools-249f870f2c6fb60734e9db34e44f7e44cd35c914.tar.gz external_python_setuptools-249f870f2c6fb60734e9db34e44f7e44cd35c914.tar.bz2 external_python_setuptools-249f870f2c6fb60734e9db34e44f7e44cd35c914.zip | |
Drop support for 'tag_svn_version' distribution option. Fixes #619.
Diffstat (limited to 'setuptools/tests')
| -rw-r--r-- | setuptools/tests/test_egg_info.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/setuptools/tests/test_egg_info.py b/setuptools/tests/test_egg_info.py index 75ae18df..a32b981d 100644 --- a/setuptools/tests/test_egg_info.py +++ b/setuptools/tests/test_egg_info.py @@ -88,9 +88,8 @@ class TestEggInfo(object): assert '[egg_info]' in content assert 'tag_build =' in content assert 'tag_date = 0' in content - assert 'tag_svn_revision = 0' in content - expected_order = 'tag_build', 'tag_date', 'tag_svn_revision' + expected_order = 'tag_build', 'tag_date', self._validate_content_order(content, expected_order) @@ -117,7 +116,6 @@ class TestEggInfo(object): [egg_info] tag_build = tag_date = 0 - tag_svn_revision = 0 """), }) dist = Distribution() @@ -131,9 +129,8 @@ class TestEggInfo(object): assert '[egg_info]' in content assert 'tag_build =' in content assert 'tag_date = 0' in content - assert 'tag_svn_revision = 0' in content - expected_order = 'tag_build', 'tag_date', 'tag_svn_revision' + expected_order = 'tag_build', 'tag_date', self._validate_content_order(content, expected_order) |
