def test_correct_output_5days_version_a(self):
     test_data = "data/forecast_5days_a.json"
     with open('tests/expected_output/forecast_5days_a_output.txt',
               encoding="utf8") as txt_file:
         expected_string = txt_file.read()
     result_string = process_weather(test_data)
     self.assertEqual(expected_string, result_string)
示例#2
0
 def test_correct_output_10days(self):
     test_data = "data/forecast_8days.json"
     with open("tests/expected_output/forecast_8days_output.txt",
               encoding="utf8") as txt_file:
         expected_string = txt_file.read()
     result_string = process_weather(test_data)
     self.assertEqual(expected_string, result_string)