def test_city_country_population(self):
     """If a population is given, will the function still work?"""
     formatted_location = get_formatted_location('santiago',
                                                 'chile',
                                                 population=5000000)
     self.assertEqual(formatted_location,
                      'Santiago, Chile - population 5000000')
	def test_city_country(self):
		"""Do locations like 'Santiago, Chile' work?"""
		formatted_location = get_formatted_location('santiago', 'chile')
		self.assertEqual(formatted_location, 'Santiago, Chile')
Example #3
0
 def test_city_country_population(self):
     """Test that things like 'Santiago, Chile - 5000000' work"""
     formatted_location = get_formatted_location('santiago', 'chile',
                                                 5000000)
     self.assertEqual(formatted_location, 'Santiago, Chile - 5000000')