예제 #1
0
 def test_price_min_0_phone_lines(self):
     test = Purchase()
     self.assertNotEqual(test.decrement_phone_Lines(), -150)
예제 #2
0
 def test_price_after_decrement_cell_lines(self):
     test = Purchase()
     test.increment_phone_Lines()
     test.increment_phone_Lines()
     self.assertEqual(test.decrement_phone_Lines(), 150)