def test_feeling_is_str(self):
     temp = temp_now()
     feeling = how_does_it_feel(temp)
     self.assertIsInstance(feeling, str)
 def test_temp_is_int(self):
     temp = temp_now()
     self.assertIsInstance(temp, int)