Commit ab2c06a8 authored by Taddeus Kroes's avatar Taddeus Kroes

simplified a unit test.

parent 84753e44
...@@ -6,12 +6,9 @@ from tests.rulestestcase import RulesTestCase, tree ...@@ -6,12 +6,9 @@ from tests.rulestestcase import RulesTestCase, tree
class TestRulesGoniometry(RulesTestCase): class TestRulesGoniometry(RulesTestCase):
def test_match_add_quadrants(self): def test_match_add_quadrants(self):
return
root = tree('sin(x) ^ 2 + cos(x) ^ 2') root = tree('sin(x) ^ 2 + cos(x) ^ 2')
possibilities = match_add_quadrants(root) possibilities = match_add_quadrants(root)
self.assertEqualPos(possibilities, [P(root, add_quadrants, ())]) self.assertEqualPos(possibilities, [P(root, add_quadrants, ())])
def test_add_quadrants(self): def test_add_quadrants(self):
return self.assertEqual(add_quadrants(None, ()), 1)
root = tree('sin(x) ^ 2 + cos(x) ^ 2')
self.assertEqual(add_quadrants(root, ()), 1)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment