Ejemplo n.º 1
0
 def test_it_is_cold(self):
     feeling = how_does_it_feel(-10)
     self.assertEqual(feeling, 'Brrrr!')
Ejemplo n.º 2
0
 def test_feeling_is_str(self):
     temp = temp_now()
     feeling = how_does_it_feel(temp)
     self.assertIsInstance(feeling, str)