()
| 29 | |
| 30 | |
| 31 | def test_naive_in_timezone(): |
| 32 | dt = pendulum.naive(2013, 3, 31, 1, 30) |
| 33 | new = dt.in_timezone("Europe/Paris") |
| 34 | |
| 35 | assert_datetime(new, 2013, 3, 31, 1, 30) |
| 36 | assert new.timezone_name == "Europe/Paris" |
| 37 | |
| 38 | |
| 39 | def test_naive_in_timezone_dst(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…