Skip to content

Commit

Permalink
add more unexpected types
Browse files Browse the repository at this point in the history
  • Loading branch information
eberrigan committed Oct 28, 2024
1 parent 5891f7b commit 73eb4b0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/test_points.py
Original file line number Diff line number Diff line change
Expand Up @@ -846,6 +846,12 @@ def test_extract_from_multilinestring(geometry, expected):
("24", []),
(None, []),
(5, []),
(True, []),
("", []),
({"key": "value"}, []),
(np.array([1, 2]), []),
((), []),
([], []),
],
)
def test_extract_from_unsupported_geometry(unexpected_input, expected_output):
Expand Down

0 comments on commit 73eb4b0

Please sign in to comment.