1
0
mirror of https://github.com/django/django.git synced 2024-12-31 21:46:05 +00:00

Added test for LineString.__iter__().

This commit is contained in:
Sergey Fedoseev 2017-07-12 22:13:06 +05:00
parent 83440a1258
commit 1a742ea33b

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