()
| 29 | |
| 30 | |
| 31 | def test_sub_interval(): |
| 32 | p1 = pendulum.duration(days=23, seconds=32) |
| 33 | p2 = pendulum.duration(days=12, seconds=28) |
| 34 | |
| 35 | p = p1 - p2 |
| 36 | assert_duration(p, 0, 0, 1, 4, 0, 0, 4) |
| 37 | |
| 38 | |
| 39 | def test_sub_timedelta(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…