(self)
| 109 | assert s1 != s2 |
| 110 | |
| 111 | def test_pickle(self): |
| 112 | s1 = schedule(10, app=self.app) |
| 113 | fun, args = s1.__reduce__() |
| 114 | s2 = fun(*args) |
| 115 | assert s1 == s2 |
| 116 | |
| 117 | |
| 118 | # This is needed for test_crontab_parser because datetime.utcnow doesn't pickle |
nothing calls this directly
no test coverage detected