From: Zooko O'Whielacronx Date: Fri, 28 Jan 2011 14:15:46 +0000 (-0800) Subject: setup: adjust tests to use the new interface of check_requirement which has a 3-tuple... X-Git-Tag: trac-5000~5 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=6f84f1b869baa9f8aa942c876879e5ed2046a5bb;p=tahoe-lafs%2Ftahoe-lafs.git setup: adjust tests to use the new interface of check_requirement which has a 3-tuples instead of a 2-tuple fixes #1339 --- diff --git a/src/allmydata/test/test_version.py b/src/allmydata/test/test_version.py index 8bbc3f6b..2c098c7e 100644 --- a/src/allmydata/test/test_version.py +++ b/src/allmydata/test/test_version.py @@ -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", {})