()
| 133 | |
| 134 | |
| 135 | def test_closest_with_time(): |
| 136 | instance = pendulum.time(12, 34, 56) |
| 137 | t1 = pendulum.time(12, 34, 54) |
| 138 | t2 = pendulum.time(12, 34, 59) |
| 139 | closest = instance.closest(t1, t2) |
| 140 | |
| 141 | assert_time(closest, 12, 34, 54) |
| 142 | |
| 143 | |
| 144 | def test_closest_with_equals(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…