()
| 45 | |
| 46 | |
| 47 | def test_add(): |
| 48 | dt = pendulum.naive(2013, 3, 31, 2, 30) |
| 49 | new = dt.add(days=3) |
| 50 | |
| 51 | assert_datetime(new, 2013, 4, 3, 2, 30) |
| 52 | |
| 53 | |
| 54 | def test_subtract(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…