Example #1
0
 def test_make_prediction(self):
     havana = City("Havana", 25, 70)
     self.assertEqual(havana.make_prediction(), (50.0, 70.0))
Example #2
0
 def test_return_type_6(self):
     havana = City("Havana", 25, 70)
     self.assertEqual(tuple, type(havana.make_prediction()))