(self)
| 937 | class test_schedule: |
| 938 | |
| 939 | def test_maybe_make_aware(self): |
| 940 | x = schedule(10, app=self.app) |
| 941 | x.utc_enabled = True |
| 942 | d = x.maybe_make_aware(datetime.now(timezone.utc)) |
| 943 | assert d.tzinfo |
| 944 | x.utc_enabled = False |
| 945 | d2 = x.maybe_make_aware(datetime.now(timezone.utc)) |
| 946 | assert d2.tzinfo |
| 947 | |
| 948 | def test_to_local(self): |
| 949 | x = schedule(10, app=self.app) |
nothing calls this directly
no test coverage detected