Test Point string representation.
(self)
| 23 | assert p1 != p3 |
| 24 | |
| 25 | def test_point_repr(self) -> None: |
| 26 | """Test Point string representation.""" |
| 27 | p = Point(1.5, 2.5) |
| 28 | assert repr(p) == "Point(1.5, 2.5)" |
| 29 | |
| 30 | def test_point_hash(self) -> None: |
| 31 | """Test Point hashing.""" |