def test_integer_false(self): a = Cell(content=13) b = Cell(content=15) c = Cell() greater_than(a, b, c) scheduler.run() self.assertEqual(c.content, False)
def test_integer_true(self): a = Cell(content=17) b = Cell(content=15) c = Cell() greater_than(a, b, c) scheduler.run() self.assertEqual(c.content, True)