()
| 67 | |
| 68 | |
| 69 | def test_add_timedelta_with_days(): |
| 70 | delta = timedelta(days=3, seconds=45, microseconds=123456) |
| 71 | d = Time(3, 12, 15, 654321) |
| 72 | |
| 73 | with pytest.raises(TypeError): |
| 74 | d.subtract_timedelta(delta) |
| 75 | |
| 76 | |
| 77 | def test_subtract_invalid_type(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…