diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2013-10-29 01:07:43 +0100 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2013-10-29 01:07:43 +0100 |
commit | 5c10062ce0ffb83010aba800f25f2df3f6540211 (patch) | |
tree | 3ea77a4a85f33044705c002ce5fc8a469fd09385 /tests | |
parent | cea04334adfa5ac1458465dcf7f76aa8ee2ed425 (diff) | |
download | factory-boy-5c10062ce0ffb83010aba800f25f2df3f6540211.tar factory-boy-5c10062ce0ffb83010aba800f25f2df3f6540211.tar.gz |
Fix FuzzyDecimal on Python2.6.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_fuzzy.py | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/tests/test_fuzzy.py b/tests/test_fuzzy.py index 050f8a1..d6f33bb 100644 --- a/tests/test_fuzzy.py +++ b/tests/test_fuzzy.py @@ -115,17 +115,20 @@ class FuzzyDecimalTestCase(unittest.TestCase): fuzz = fuzzy.FuzzyDecimal(2.0, 3.0) for _i in range(20): res = fuzz.evaluate(2, None, False) - self.assertTrue(decimal.Decimal(2.0) <= res <= decimal.Decimal(3.0), 'value is not between 2.0 and 3.0. It is %d' % res) + self.assertTrue(decimal.Decimal('2.0') <= res <= decimal.Decimal('3.0'), + "value %d is not between 2.0 and 3.0" % res) fuzz = fuzzy.FuzzyDecimal(4.0) for _i in range(20): res = fuzz.evaluate(2, None, False) - self.assertTrue(decimal.Decimal(0.0) <= res <= decimal.Decimal(4.0), 'value is not between 0.0 and 4.0. It is %d' % res) + self.assertTrue(decimal.Decimal('0.0') <= res <= decimal.Decimal('4.0'), + "value %d is not between 0.0 and 4.0" % res) fuzz = fuzzy.FuzzyDecimal(1.0, 4.0, precision=5) for _i in range(20): res = fuzz.evaluate(2, None, False) - self.assertTrue(decimal.Decimal(0.54) <= res <= decimal.Decimal(4.0), 'value is not between 0.54 and 4.0. It is %d' % res) + self.assertTrue(decimal.Decimal('0.54') <= res <= decimal.Decimal('4.0'), + "value %d is not between 0.54 and 4.0" % res) self.assertTrue(res.as_tuple().exponent, -5) def test_biased(self): @@ -136,7 +139,7 @@ class FuzzyDecimalTestCase(unittest.TestCase): with mock.patch('random.uniform', fake_uniform): res = fuzz.evaluate(2, None, False) - self.assertEqual(decimal.Decimal(10.0), res) + self.assertEqual(decimal.Decimal('10.0'), res) def test_biased_high_only(self): fake_uniform = lambda low, high: low + high @@ -146,7 +149,7 @@ class FuzzyDecimalTestCase(unittest.TestCase): with mock.patch('random.uniform', fake_uniform): res = fuzz.evaluate(2, None, False) - self.assertEqual(decimal.Decimal(8.0), res) + self.assertEqual(decimal.Decimal('8.0'), res) def test_precision(self): fake_uniform = lambda low, high: low + high + 0.001 @@ -156,7 +159,7 @@ class FuzzyDecimalTestCase(unittest.TestCase): with mock.patch('random.uniform', fake_uniform): res = fuzz.evaluate(2, None, False) - self.assertEqual(decimal.Decimal(8.001).quantize(decimal.Decimal(10) ** -3), res) + self.assertEqual(decimal.Decimal('8.001').quantize(decimal.Decimal(10) ** -3), res) class FuzzyDateTestCase(unittest.TestCase): |