()
| 37 | |
| 38 | |
| 39 | def test_naive_in_timezone_dst(): |
| 40 | dt = pendulum.naive(2013, 3, 31, 2, 30) |
| 41 | new = dt.in_timezone("Europe/Paris") |
| 42 | |
| 43 | assert_datetime(new, 2013, 3, 31, 3, 30) |
| 44 | assert new.timezone_name == "Europe/Paris" |
| 45 | |
| 46 | |
| 47 | def test_add(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…