test add scheduler in the options
()
| 23 | |
| 24 | |
| 25 | def test_scheduler(): |
| 26 | """test add scheduler in the options""" |
| 27 | scheduler = AsyncIOScheduler() |
| 28 | options = WechatyOptions( |
| 29 | scheduler=scheduler |
| 30 | ) |
| 31 | bot = Wechaty(options=options) |
| 32 | assert id(scheduler) == id(bot._plugin_manager.scheduler) |
nothing calls this directly
no test coverage detected