From: Éric Araujo Date: Tue, 4 Oct 2011 23:41:14 +0000 (+0200) Subject: Add tests for comparing candidate and final versions in packaging (#11841). X-Git-Tag: v3.3.0a1~1290^2~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=763cc6eaee612d803815a5eea28b95c39f6dce48;p=thirdparty%2FPython%2Fcpython.git Add tests for comparing candidate and final versions in packaging (#11841). This used to be buggy; Filip Gruszczyński contributed tests and a code patch but the latter is not needed. --- diff --git a/Lib/packaging/tests/test_version.py b/Lib/packaging/tests/test_version.py index f94c80011459..54a9e7a23992 100644 --- a/Lib/packaging/tests/test_version.py +++ b/Lib/packaging/tests/test_version.py @@ -101,8 +101,18 @@ class VersionTestCase(unittest.TestCase): True >>> V('1.2.0') >= V('1.2.3') False + >>> V('1.2.0rc1') >= V('1.2.0') + False >>> (V('1.0') > V('1.0b2')) True + >>> V('1.0') > V('1.0c2') + True + >>> V('1.0') > V('1.0rc2') + True + >>> V('1.0rc2') > V('1.0rc1') + True + >>> V('1.0c4') > V('1.0c1') + True >>> (V('1.0') > V('1.0c2') > V('1.0c1') > V('1.0b2') > V('1.0b1') ... > V('1.0a2') > V('1.0a1')) True @@ -129,6 +139,8 @@ class VersionTestCase(unittest.TestCase): ... < V('1.0.dev18') ... < V('1.0.dev456') ... < V('1.0.dev1234') + ... < V('1.0rc1') + ... < V('1.0rc2') ... < V('1.0') ... < V('1.0.post456.dev623') # development version of a post release ... < V('1.0.post456'))