From 0f8a4d97f6bde08a9fe909a888f197e05f91666b Mon Sep 17 00:00:00 2001 From: Kelsey Jordahl Date: Thu, 21 Nov 2013 18:40:45 -0600 Subject: [PATCH] TST: Test for Nominatim geocoder --- tests/test_geocode.py | 4 ++++ 1 file changed, 4 insertions(+) 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)