summaryrefslogtreecommitdiff
path: root/tests/test_base.py
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2016-03-07 12:43:55 +0000
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2016-03-07 12:43:55 +0000
commit19692604b597e6aaede114edfd4fa8627fc9fd97 (patch)
tree57cc02af9977f44a43dc1c98b77c70820ffc341b /tests/test_base.py
parentec2c25cd3a46c53adbbdb411239043d237ad077f (diff)
parent2d3f694f852ac1619d673b67b115cb9bbb352c5e (diff)
downloadsemantic-version-19692604b597e6aaede114edfd4fa8627fc9fd97.tar.gz
Merge pull request #41 from ekmartin/compatible_docs
Add a doc section about compatible release clauses
Diffstat (limited to 'tests/test_base.py')
-rwxr-xr-xtests/test_base.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_base.py b/tests/test_base.py
index 0675b24..a1255c3 100755
--- a/tests/test_base.py
+++ b/tests/test_base.py
@@ -518,6 +518,10 @@ class SpecItemTestCase(unittest.TestCase):
['1.4.5', '1.4.10-alpha', '1.4.10'],
['1.3.6', '1.4.4', '1.5.0'],
),
+ '~=1.4.0': (
+ ['1.4.0', '1.4.10-alpha', '1.4.10'],
+ ['1.3.6', '1.3.9', '1.5.0'],
+ ),
'~=1.4': (
['1.4.0', '1.6.10-alpha', '1.6.10'],
['1.3.0', '2.0.0'],