(self)
| 219 | assert timezone.get_timezone('UTC') |
| 220 | |
| 221 | def test_tz_or_local(self): |
| 222 | assert timezone.tz_or_local() == timezone.local |
| 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)) |
nothing calls this directly
no test coverage detected