diff --git a/tests/test_geocode.py b/tests/test_geocode.py index 8a0d111..82b4e2c 100644 --- a/tests/test_geocode.py +++ b/tests/test_geocode.py @@ -71,3 +71,7 @@ class TestGeocode(unittest.TestCase): def test_openmapquest(self): g = geocode(self.locations, provider='openmapquest') self.assertIsInstance(g, gpd.GeoDataFrame) + + def test_nominatim(self): + g = geocode(self.locations, provider='nominatim') + self.assertIsInstance(g, gpd.GeoDataFrame)