(self, mock_exit)
| 498 | class Exit_: |
| 499 | @patch("invoke.program.sys.exit") |
| 500 | def defaults_to_exiting_0(self, mock_exit): |
| 501 | p = Program() |
| 502 | p.execute = Mock(side_effect=Exit()) |
| 503 | p.run("myapp foo") |
| 504 | mock_exit.assert_called_once_with(0) |
| 505 | |
| 506 | @trap |
| 507 | @patch("invoke.program.sys.exit") |