Test with two points.
()
| 16 | |
| 17 | |
| 18 | def test_two_points() -> None: |
| 19 | """Test with two points.""" |
| 20 | assert graham_scan([Point(0, 0), Point(1, 1)]) == [] |
| 21 | |
| 22 | |
| 23 | def test_duplicate_points() -> None: |
nothing calls this directly
no test coverage detected