()
| 170 | |
| 171 | |
| 172 | def test_farthest_with_equals(): |
| 173 | instance = pendulum.time(12, 34, 56) |
| 174 | t1 = pendulum.time(12, 34, 56) |
| 175 | t2 = pendulum.time(12, 34, 59) |
| 176 | |
| 177 | farthest = instance.farthest(t1, t2) |
| 178 | assert t2 == farthest |
| 179 | |
| 180 | |
| 181 | def test_comparison_to_unsupported(): |