Loading django/contrib/gis/tests/inspectapp/models.py +1 −0 Original line number Diff line number Diff line Loading @@ -9,5 +9,6 @@ class AllOGRFields(models.Model): f_datetime = models.DateTimeField() f_time = models.TimeField() geom = models.PolygonField() point = models.PointField() objects = models.GeoManager() django/contrib/gis/tests/inspectapp/tests.py +18 −0 Original line number Diff line number Diff line Loading @@ -3,11 +3,13 @@ from __future__ import unicode_literals import os from unittest import skipUnless from django.core.management import call_command from django.db import connections from django.test import TestCase from django.contrib.gis.gdal import HAS_GDAL from django.contrib.gis.geometry.test_data import TEST_DATA from django.contrib.gis.tests.utils import HAS_SPATIAL_DB from django.utils.six import StringIO if HAS_GDAL: from django.contrib.gis.gdal import Driver Loading @@ -16,6 +18,22 @@ if HAS_GDAL: from .models import AllOGRFields @skipUnless(HAS_GDAL and HAS_SPATIAL_DB, "GDAL and spatial db are required.") class InspectDbTests(TestCase): def test_geom_columns(self): """ Test the geo-enabled inspectdb command. """ out = StringIO() call_command('inspectdb', table_name_filter=lambda tn:tn.startswith('inspectapp_'), stdout=out) output = out.getvalue() self.assertIn('geom = models.PolygonField()', output) self.assertIn('point = models.PointField()', output) self.assertIn('objects = models.GeoManager()', output) @skipUnless(HAS_GDAL and HAS_SPATIAL_DB, "GDAL and spatial db are required.") class OGRInspectTest(TestCase): maxDiff = 1024 Loading Loading
django/contrib/gis/tests/inspectapp/models.py +1 −0 Original line number Diff line number Diff line Loading @@ -9,5 +9,6 @@ class AllOGRFields(models.Model): f_datetime = models.DateTimeField() f_time = models.TimeField() geom = models.PolygonField() point = models.PointField() objects = models.GeoManager()
django/contrib/gis/tests/inspectapp/tests.py +18 −0 Original line number Diff line number Diff line Loading @@ -3,11 +3,13 @@ from __future__ import unicode_literals import os from unittest import skipUnless from django.core.management import call_command from django.db import connections from django.test import TestCase from django.contrib.gis.gdal import HAS_GDAL from django.contrib.gis.geometry.test_data import TEST_DATA from django.contrib.gis.tests.utils import HAS_SPATIAL_DB from django.utils.six import StringIO if HAS_GDAL: from django.contrib.gis.gdal import Driver Loading @@ -16,6 +18,22 @@ if HAS_GDAL: from .models import AllOGRFields @skipUnless(HAS_GDAL and HAS_SPATIAL_DB, "GDAL and spatial db are required.") class InspectDbTests(TestCase): def test_geom_columns(self): """ Test the geo-enabled inspectdb command. """ out = StringIO() call_command('inspectdb', table_name_filter=lambda tn:tn.startswith('inspectapp_'), stdout=out) output = out.getvalue() self.assertIn('geom = models.PolygonField()', output) self.assertIn('point = models.PointField()', output) self.assertIn('objects = models.GeoManager()', output) @skipUnless(HAS_GDAL and HAS_SPATIAL_DB, "GDAL and spatial db are required.") class OGRInspectTest(TestCase): maxDiff = 1024 Loading