From: Danielle Bolan Date: Wed, 11 Jun 2014 15:56:00 +0000 (+0200) Subject: test file X-Git-Tag: 1.0~259 X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/commitdiff_plain/9f42c3add9b8f9eb69084323c816977d52902d0b test file --- diff --git a/tests/test_linear.py b/tests/test_linear.py index 4636275..93fc838 100644 --- a/tests/test_linear.py +++ b/tests/test_linear.py @@ -12,7 +12,7 @@ class TestExpression(unittest.TestCase): self.x = symbol('x') self.y = symbol('y') self.z = symbol('z') - self.zero = constant(0) + self.zero = constant(5) self.pi = constant(Fraction(22, 7)) self.e = self.x - 2*self.y + 3 @@ -23,6 +23,7 @@ class TestExpression(unittest.TestCase): self.assertCountEqual(self.x.symbols(), ['x']) self.assertCountEqual(self.pi.symbols(), []) self.assertCountEqual(self.e.symbols(), ['x', 'y']) + def test_dimension(self): self.assertEqual(self.x.dimension, 1) @@ -175,3 +176,4 @@ class TestPolyhedron(unittest.TestCase): pass +