()
| 220 | |
| 221 | |
| 222 | def test_farthest_with_equals(): |
| 223 | instance = pendulum.Date(2015, 5, 28) |
| 224 | dt1 = pendulum.Date(2015, 5, 28) |
| 225 | dt2 = pendulum.Date(2015, 5, 30) |
| 226 | closest = instance.farthest(dt1, dt2) |
| 227 | assert closest == dt2 |
| 228 | |
| 229 | |
| 230 | def test_is_same_day(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…