Loading django/contrib/gis/tests/geoapp/tests.py +8 −1 Original line number Diff line number Diff line Loading @@ -11,7 +11,7 @@ from django.contrib.gis.tests.utils import ( no_mysql, no_oracle, no_spatialite, mysql, oracle, postgis, spatialite) from django.test import TestCase from django.utils import six from django.utils import six, unittest from .models import Country, City, PennsylvaniaCity, State, Track Loading Loading @@ -295,6 +295,13 @@ class GeoLookupTest(TestCase): self.assertEqual(2, len(qs)) for c in qs: self.assertEqual(True, c.name in cities) # The left/right lookup tests are known failures on PostGIS 2.0+ # until the following bug is fixed: # http://trac.osgeo.org/postgis/ticket/2035 # TODO: Ensure fixed in 2.0.2, else modify upper bound for version here. if (2, 0, 0) <= connection.ops.spatial_version <= (2, 0, 1): test_left_right_lookups = unittest.expectedFailure(test_left_right_lookups) def test_equals_lookups(self): "Testing the 'same_as' and 'equals' lookup types." pnt = fromstr('POINT (-95.363151 29.763374)', srid=4326) Loading Loading
django/contrib/gis/tests/geoapp/tests.py +8 −1 Original line number Diff line number Diff line Loading @@ -11,7 +11,7 @@ from django.contrib.gis.tests.utils import ( no_mysql, no_oracle, no_spatialite, mysql, oracle, postgis, spatialite) from django.test import TestCase from django.utils import six from django.utils import six, unittest from .models import Country, City, PennsylvaniaCity, State, Track Loading Loading @@ -295,6 +295,13 @@ class GeoLookupTest(TestCase): self.assertEqual(2, len(qs)) for c in qs: self.assertEqual(True, c.name in cities) # The left/right lookup tests are known failures on PostGIS 2.0+ # until the following bug is fixed: # http://trac.osgeo.org/postgis/ticket/2035 # TODO: Ensure fixed in 2.0.2, else modify upper bound for version here. if (2, 0, 0) <= connection.ops.spatial_version <= (2, 0, 1): test_left_right_lookups = unittest.expectedFailure(test_left_right_lookups) def test_equals_lookups(self): "Testing the 'same_as' and 'equals' lookup types." pnt = fromstr('POINT (-95.363151 29.763374)', srid=4326) Loading