()
| 61 | |
| 62 | |
| 63 | def test_add_timedelta_with_days(): |
| 64 | delta = timedelta(days=3, seconds=45, microseconds=123456) |
| 65 | d = pendulum.time(3, 12, 15, 654321) |
| 66 | |
| 67 | with pytest.raises(TypeError): |
| 68 | d.add_timedelta(delta) |
| 69 | |
| 70 | |
| 71 | def test_addition_invalid_type(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…