tests: warn if no datasources are found

This commit is contained in:
Dane Springmeyer 2011-11-11 17:03:56 -08:00
parent 67682f1f36
commit dc1e875cb4

View file

@ -9,6 +9,10 @@ def setup():
# All of the paths used are relative, if we run the tests
# from another directory we need to chdir()
os.chdir(execution_path('.'))
def test_that_datasources_exist():
if len(mapnik2.DatasourceCache.instance().plugin_names()) == 0:
print '***NOTICE*** - no datasource plugins have been loaded'
def test_field_listing():
lyr = mapnik2.Layer('test')