(self)
| 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) |
| 409 | self.assert_control_called_with_args( |
| 410 | 'ping', |
| 411 | destination='a@q.com', |
| 412 | _options={ |
| 413 | 'limit': 3, |
| 414 | 'timeout': 1.0, |
| 415 | 'reply': True, |
| 416 | }) |
| 417 | |
| 418 | def test_revoke(self): |
| 419 | self.app.control.revoke('foozbaaz') |
nothing calls this directly
no test coverage detected