Esempio n. 1
0
 def test_get_country_scotland(self):
     expected_resp = json.loads(
         get_string("fixtures/country_scotland.json")
     )
     code = "XH"
     resp = get_country(code)
     self.assertEqual(expected_resp, resp)
Esempio n. 2
0
 def test_get_country_wales(self):
     expected_resp = json.loads(get_string("fixtures/country_wales.json"))
     code = "XI"
     resp = get_country(code)
     self.assertEqual(expected_resp, resp)