()
| 161 | |
| 162 | |
| 163 | def test_farthest_with_time(): |
| 164 | instance = pendulum.time(12, 34, 56) |
| 165 | t1 = pendulum.time(12, 34, 54) |
| 166 | t2 = pendulum.time(12, 34, 59) |
| 167 | farthest = instance.farthest(t1, t2) |
| 168 | |
| 169 | assert_time(farthest, 12, 34, 59) |
| 170 | |
| 171 | |
| 172 | def test_farthest_with_equals(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…