()
| 22 | |
| 23 | |
| 24 | def test_naive_subtract(): |
| 25 | dt = pendulum.naive(2013, 3, 31, 1, 30) |
| 26 | new = dt.subtract(hours=1) |
| 27 | |
| 28 | assert_datetime(new, 2013, 3, 31, 0, 30) |
| 29 | |
| 30 | |
| 31 | def test_naive_in_timezone(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…