()
| 16 | |
| 17 | |
| 18 | def test_add_timedelta(): |
| 19 | p1 = pendulum.duration(days=23, seconds=32) |
| 20 | p2 = timedelta(days=12, seconds=30) |
| 21 | |
| 22 | p = p1 + p2 |
| 23 | assert_duration(p, 0, 0, 5, 0, 0, 1, 2) |
| 24 | |
| 25 | |
| 26 | def test_add_unsupported(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…