Properly used test skipping in OGRInspectTest TestCase

This commit is contained in:
Claude Paroz 2013-04-15 19:36:44 +02:00
parent bfb2504402
commit 1628dfd0b9
1 changed files with 3 additions and 3 deletions

View File

@ -56,15 +56,15 @@ class OGRInspectTest(TestCase):
# complains about permissions, and SpatiaLite/Oracle are
# insanely difficult to get support compiled in for in GDAL.
if not connections['default'].ops.postgis:
return
self.skipTest("This database does not support 'ogrinspect'ion")
# Getting the database identifier used by OGR, if None returned
# GDAL does not have the support compiled in.
ogr_db = get_ogr_db_string()
if not ogr_db:
return
self.skipTest("Your GDAL installation does not support PostGIS databases")
# writing shapefules via GDAL currently does not support writing OGRTime
# Writing shapefiles via GDAL currently does not support writing OGRTime
# fields, so we need to actually use a database
model_def = ogrinspect(ogr_db, 'Measurement',
layer_key=AllOGRFields._meta.db_table,