test reading from an empty sqlite db

This commit is contained in:
Dane Springmeyer 2011-11-09 17:19:05 -08:00
parent a058639b24
commit bc06b31746
2 changed files with 9 additions and 0 deletions

BIN
tests/data/sqlite/empty.db Normal file

Binary file not shown.

View file

@ -196,6 +196,15 @@ if 'sqlite' in mapnik2.DatasourceCache.instance().plugin_names():
eq_(feature['rowid'],1)
eq_(feature['fips'],u'AC')
def test_empty_db():
ds = mapnik2.SQLite(file='../data/sqlite/empty.db',
table='empty',
)
fs = ds.featureset()
feature = fs.next()
eq_(feature,None)
if __name__ == "__main__":
setup()
[eval(run)() for run in dir() if 'test_' in run]