()
| 254 | |
| 255 | |
| 256 | def test_average_from_lower(): |
| 257 | d1 = pendulum.datetime(2009, 12, 31, 23, 59, 59, tz="local") |
| 258 | d2 = pendulum.datetime(2000, 1, 1, 1, 1, 1, tz="local").average(d1) |
| 259 | assert_datetime(d2, 2004, 12, 31, 12, 30, 30) |
| 260 | |
| 261 | |
| 262 | def start_of_with_invalid_unit(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…