()
| 37 | |
| 38 | |
| 39 | def test_sub_timedelta(): |
| 40 | p1 = pendulum.duration(days=23, seconds=32) |
| 41 | p2 = timedelta(days=12, seconds=28) |
| 42 | |
| 43 | p = p1 - p2 |
| 44 | assert_duration(p, 0, 0, 1, 4, 0, 0, 4) |
| 45 | |
| 46 | |
| 47 | def test_sub_unsupported(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…