From 1a742ea33b075731da4cf034eecff5bcac8f6f06 Mon Sep 17 00:00:00 2001 From: Sergey Fedoseev Date: Wed, 12 Jul 2017 22:13:06 +0500 Subject: [PATCH] Added test for LineString.__iter__(). --- tests/gis_tests/geos_tests/test_geos.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/gis_tests/geos_tests/test_geos.py b/tests/gis_tests/geos_tests/test_geos.py index c75ef31d70..2c94cc165f 100644 --- a/tests/gis_tests/geos_tests/test_geos.py +++ b/tests/gis_tests/geos_tests/test_geos.py @@ -328,6 +328,9 @@ class GEOSTest(SimpleTestCase, TestDataMixin): with self.assertRaisesMessage(TypeError, 'Invalid initialization input for LineStrings.'): LineString('wrong input') + # Test __iter__(). + self.assertEqual(list(LineString((0, 0), (1, 1), (2, 2))), [(0, 0), (1, 1), (2, 2)]) + def test_multilinestring(self): "Testing MultiLineString objects." prev = fromstr('POINT(0 0)')