Ejemplo n.º 1
0
    def test_integer_false(self):
        a = Cell(content=17)
        b = Cell(content=15)
        c = Cell()

        less_than(a, b, c)

        scheduler.run()

        self.assertEqual(c.content, False)
Ejemplo n.º 2
0
    def test_integer_false(self):
        a = Cell(content=17)
        b = Cell(content=15)
        c = Cell()

        less_than(a, b, c)

        scheduler.run()

        self.assertEqual(c.content, False)
Ejemplo n.º 3
0
    def test_integer_true(self):
        a = Cell(content=13)
        b = Cell(content=15)
        c = Cell()

        less_than(a, b, c)

        scheduler.run()

        self.assertEqual(c.content, True)
Ejemplo n.º 4
0
    def test_integer_true(self):
        a = Cell(content=13)
        b = Cell(content=15)
        c = Cell()

        less_than(a, b, c)

        scheduler.run()

        self.assertEqual(c.content, True)