(self)
| 223 | assert timezone.tz_or_local(timezone.utc) |
| 224 | |
| 225 | def test_to_local(self): |
| 226 | assert timezone.to_local(make_aware(datetime.now(_timezone.utc), timezone.utc)) |
| 227 | assert timezone.to_local(datetime.now(_timezone.utc)) |
| 228 | |
| 229 | def test_to_local_fallback(self): |
| 230 | assert timezone.to_local_fallback( |
nothing calls this directly
no test coverage detected