()
| 57 | |
| 58 | |
| 59 | def test_safe_timezone_with_tzinfo_objects() -> None: |
| 60 | tz = _safe_timezone(zoneinfo.ZoneInfo("Europe/Paris")) |
| 61 | |
| 62 | assert isinstance(tz, Timezone) |
| 63 | assert tz.name == "Europe/Paris" |
nothing calls this directly
no test coverage detected
searching dependent graphs…