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)')