Test Point equality.
()
| 176 | |
| 177 | |
| 178 | def test_point_equality() -> None: |
| 179 | """Test Point equality.""" |
| 180 | p1 = Point(1, 2) |
| 181 | p2 = Point(1, 2) |
| 182 | p3 = Point(2, 1) |
| 183 | |
| 184 | assert p1 == p2 |
| 185 | assert p1 != p3 |
| 186 | |
| 187 | |
| 188 | def test_point_comparison() -> None: |