(self)
| 344 | ) |
| 345 | |
| 346 | def test_shutdown(self): |
| 347 | self.app.control.shutdown() |
| 348 | self.assert_control_called_with_args('shutdown', destination=None) |
| 349 | |
| 350 | def test_shutdown__with_destination(self): |
| 351 | self.app.control.shutdown(destination='a@q.com', limit=3) |
nothing calls this directly
no test coverage detected