Example #1
0
 def test_choose_to_leave_city_false(self):
     c = Car(1)
     self.assertEqual(c.choose_to_leave_city(71), False)
Example #2
0
 def test_choose_to_leave_city(self):
     c = Car(1)
     self.assertEqual(c.choose_to_leave_city(70), True)