(self)
| 13 | return tuple(c for c in [x, y, z] if c) |
| 14 | |
| 15 | def test_empty(self): |
| 16 | g = geometry.Point() |
| 17 | h = transform(self.func, g) |
| 18 | assert h.is_empty |
| 19 | |
| 20 | def test_point(self): |
| 21 | g = geometry.Point(0, 1) |
nothing calls this directly
no test coverage detected