]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: adjust tests to use the new interface of check_requirement which has a 3-tuple...
authorZooko O'Whielacronx <zooko@zooko.com>
Fri, 28 Jan 2011 14:15:46 +0000 (06:15 -0800)
committerZooko O'Whielacronx <zooko@zooko.com>
Fri, 28 Jan 2011 14:15:46 +0000 (06:15 -0800)
fixes #1339

src/allmydata/test/test_version.py

index 8bbc3f6b80a4725be41f068cf95a5487a5d6131c..2c098c7e53bbcb5757947857e75f7ee2dc88dcc7 100644 (file)
@@ -9,20 +9,20 @@ from allmydata.util.verlib import NormalizedVersion as V, \
 
 class CheckRequirement(unittest.TestCase):
     def test_check_requirement(self):
-        check_requirement("setuptools >= 0.6c6", {"setuptools": ("0.6", "")})
-        check_requirement("pycrypto == 2.0.1, == 2.1, >= 2.3", {"pycrypto": ("2.1.0", "")})
-        check_requirement("pycrypto == 2.0.1, == 2.1, >= 2.3", {"pycrypto": ("2.4.0", "")})
+        check_requirement("setuptools >= 0.6c6", {"setuptools": ("0.6", "", "")})
+        check_requirement("pycrypto == 2.0.1, == 2.1, >= 2.3", {"pycrypto": ("2.1.0", "", "")})
+        check_requirement("pycrypto == 2.0.1, == 2.1, >= 2.3", {"pycrypto": ("2.4.0", "", "")})
 
-        check_requirement("zope.interface", {"zope.interface": ("unknown", "")})
-        check_requirement("mock", {"mock": ("0.6.0", "")})
-        check_requirement("foo >= 1.0", {"foo": ("1.0", ""), "bar": ("2.0", "")})
+        check_requirement("zope.interface", {"zope.interface": ("unknown", "", "")})
+        check_requirement("mock", {"mock": ("0.6.0", "", "")})
+        check_requirement("foo >= 1.0", {"foo": ("1.0", "", ""), "bar": ("2.0", "", "")})
 
-        check_requirement("foolscap[secure_connections] >= 0.6.0", {"foolscap": ("0.7.0", "")})
+        check_requirement("foolscap[secure_connections] >= 0.6.0", {"foolscap": ("0.7.0", "", "")})
 
         self.failUnlessRaises(PackagingError, check_requirement,
-                              "foolscap[secure_connections] >= 0.6.0", {"foolscap": ("0.5.1", "")})
+                              "foolscap[secure_connections] >= 0.6.0", {"foolscap": ("0.5.1", "", "")})
         self.failUnlessRaises(PackagingError, check_requirement,
-                              "pycrypto == 2.0.1, == 2.1, >= 2.3", {"pycrypto": ("2.2.0", "")})
+                              "pycrypto == 2.0.1, == 2.1, >= 2.3", {"pycrypto": ("2.2.0", "", "")})
         self.failUnlessRaises(PackagingError, check_requirement,
                               "foo >= 1.0", {})