()
| 52 | |
| 53 | |
| 54 | def test_subtract(): |
| 55 | dt = pendulum.naive(2013, 3, 31, 2, 30) |
| 56 | new = dt.subtract(days=3) |
| 57 | |
| 58 | assert_datetime(new, 2013, 3, 28, 2, 30) |
| 59 | |
| 60 | |
| 61 | def test_to_strings(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…