mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed #29792 -- Made GeometryField.deconstruct() handle 'extent' and 'tolerance' args.
This commit is contained in:
parent
7b9f8e38bb
commit
5a77190e66
2 changed files with 8 additions and 0 deletions
|
@ -27,10 +27,14 @@ class GeometryFieldTests(SimpleTestCase):
|
|||
srid=4067,
|
||||
dim=3,
|
||||
geography=True,
|
||||
extent=(50199.4814, 6582464.0358, -50000.0, 761274.6247, 7799839.8902, 50000.0),
|
||||
tolerance=0.01,
|
||||
)
|
||||
*_, kwargs = field.deconstruct()
|
||||
self.assertEqual(kwargs, {
|
||||
'srid': 4067,
|
||||
'dim': 3,
|
||||
'geography': True,
|
||||
'extent': (50199.4814, 6582464.0358, -50000.0, 761274.6247, 7799839.8902, 50000.0),
|
||||
'tolerance': 0.01,
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue