()
| 8 | |
| 9 | |
| 10 | def test_add_interval(): |
| 11 | p1 = pendulum.duration(days=23, seconds=32) |
| 12 | p2 = pendulum.duration(days=12, seconds=30) |
| 13 | |
| 14 | p = p1 + p2 |
| 15 | assert_duration(p, 0, 0, 5, 0, 0, 1, 2) |
| 16 | |
| 17 | |
| 18 | def test_add_timedelta(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…