(self)
| 227 | assert timezone.to_local(datetime.now(_timezone.utc)) |
| 228 | |
| 229 | def test_to_local_fallback(self): |
| 230 | assert timezone.to_local_fallback( |
| 231 | make_aware(datetime.now(_timezone.utc), timezone.utc)) |
| 232 | assert timezone.to_local_fallback(datetime.now(_timezone.utc)) |
| 233 | |
| 234 | |
| 235 | class test_make_aware: |
nothing calls this directly
no test coverage detected