def test_total_cost(self):
     self.assertEqual(
         self.value,
         ExtraCostPlugin.total_cost(
             self.start,
             self.end,
             [self.venture]
         )
     )
Example #2
0
 def test_total_cost(self):
     self.assertEqual(
         self.value * 2,
         ExtraCostPlugin.total_cost(self.start, self.end, [self.venture]))