Added test for LineString.__iter__().

This commit is contained in:
Sergey Fedoseev 2017-07-12 22:13:06 +05:00
parent 83440a1258
commit 1a742ea33b
1 changed files with 3 additions and 0 deletions

View File

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