(self)
| 399 | 'disable_events', destination='a@q.com', _options={'limit': 3}) |
| 400 | |
| 401 | def test_ping(self): |
| 402 | self.app.control.ping() |
| 403 | self.assert_control_called_with_args( |
| 404 | 'ping', destination=None, |
| 405 | _options={'timeout': 1.0, 'reply': True}) |
| 406 | |
| 407 | def test_ping_with_destination(self): |
| 408 | self.app.control.ping(destination='a@q.com', limit=3) |
nothing calls this directly
no test coverage detected