diff options
| author | Sergey Fedoseev <fedoseev.sergey@gmail.com> | 2016-11-30 18:39:03 +0600 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-11-30 07:39:03 -0500 |
| commit | 21322f92710a447708409f1fce52ee9d18752eaf (patch) | |
| tree | 5549bc48f1a80d9b47d98ec8a9c1213ac1ae96ec /tests | |
| parent | 8eb56f3c786b4dd7f78a60145ae2e483e24b62c1 (diff) | |
Fixed #27552 -- Added docs/test for GEOSGeometry.normalize().
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/gis_tests/geos_tests/test_geos.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/gis_tests/geos_tests/test_geos.py b/tests/gis_tests/geos_tests/test_geos.py index 8a82c16170..544bd3f48f 100644 --- a/tests/gis_tests/geos_tests/test_geos.py +++ b/tests/gis_tests/geos_tests/test_geos.py @@ -1331,6 +1331,11 @@ class GEOSTest(SimpleTestCase, TestDataMixin): ), ) + def test_normalize(self): + g = MultiPoint(Point(0, 0), Point(2, 2), Point(1, 1)) + self.assertIsNone(g.normalize()) + self.assertTrue(g.equals_exact(MultiPoint(Point(2, 2), Point(1, 1), Point(0, 0)))) + @ignore_warnings(category=RemovedInDjango20Warning) def test_deprecated_srid_getters_setters(self): p = Point(1, 2, srid=123) |
