1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Added SpatialFeatures.supports_tolerance_parameter.

This commit is contained in:
Tim Graham
2020-11-30 01:29:00 -05:00
committed by GitHub
parent 3828427f63
commit 371022a20d
4 changed files with 8 additions and 16 deletions

View File

@@ -432,10 +432,7 @@ class DistanceFunctionsTests(FuncTestMixin, TestCase):
).filter(d=D(m=1))
self.assertTrue(qs.exists())
@unittest.skipUnless(
connection.vendor == 'oracle',
'Oracle supports tolerance parameter.',
)
@skipUnlessDBFeature('supports_tolerance_parameter')
def test_distance_function_tolerance_escaping(self):
qs = Interstate.objects.annotate(
d=Distance(
@@ -448,10 +445,7 @@ class DistanceFunctionsTests(FuncTestMixin, TestCase):
with self.assertRaisesMessage(TypeError, msg):
qs.exists()
@unittest.skipUnless(
connection.vendor == 'oracle',
'Oracle supports tolerance parameter.',
)
@skipUnlessDBFeature('supports_tolerance_parameter')
def test_distance_function_tolerance(self):
# Tolerance is greater than distance.
qs = Interstate.objects.annotate(

View File

@@ -607,10 +607,7 @@ class GeoQuerySetTest(TestCase):
), True)
self.assertIn('subquery', ctx.captured_queries[0]['sql'])
@unittest.skipUnless(
connection.vendor == 'oracle',
'Oracle supports tolerance parameter.',
)
@skipUnlessDBFeature('supports_tolerance_parameter')
def test_unionagg_tolerance(self):
City.objects.create(
point=fromstr('POINT(-96.467222 32.751389)', srid=4326),
@@ -633,10 +630,7 @@ class GeoQuerySetTest(TestCase):
True,
)
@unittest.skipUnless(
connection.vendor == 'oracle',
'Oracle supports tolerance parameter.',
)
@skipUnlessDBFeature('supports_tolerance_parameter')
def test_unionagg_tolerance_escaping(self):
tx = Country.objects.get(name='Texas').mpoly
with self.assertRaises(DatabaseError):