()
| 15 | |
| 16 | |
| 17 | def test_naive_add(): |
| 18 | dt = pendulum.naive(2013, 3, 31, 1, 30) |
| 19 | new = dt.add(hours=1) |
| 20 | |
| 21 | assert_datetime(new, 2013, 3, 31, 2, 30) |
| 22 | |
| 23 | |
| 24 | def test_naive_subtract(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…