コード例 #1
0
 def test_pass(self):
     discount1 = Discount()
     self.assertEqual(discount1.calc_discount(100, 10), 10.0)
コード例 #2
0
 def test_fail(self):
     discount1 = Discount()
     self.assertEqual(discount1.calc_discount(100, -1),
                      'Sorry. Enter a valid percent.')
コード例 #3
0
 def test_fail(self):
     discount1 = Discount()
     self.assertEqual(
         discount1.calc_discount(100, -1),
         'Sorry. Enter a valid percent.'
     )
コード例 #4
0
 def test_pass(self):
     discount1 = Discount()
     self.assertEqual(discount1.calc_discount(100, 10), 10.0)