Commit 6adf39c0 authored by Taddeus Kroes's avatar Taddeus Kroes

Added empty expression to line generator.

parent 859c2948
...@@ -6,11 +6,8 @@ from line import generate_line ...@@ -6,11 +6,8 @@ from line import generate_line
class TestLine(unittest.TestCase): class TestLine(unittest.TestCase):
def setUp(self): def test_empty(self):
pass self.assertEquals(generate_line(None), '<empty expression>')
def tearDown(self):
pass
def test_simple(self): def test_simple(self):
l0, l1 = L(1), L(2) l0, l1 = L(1), L(2)
......
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