(self)
| 409 | self._validate_parser(args_list) |
| 410 | |
| 411 | def test_workflow(self): |
| 412 | args_list = [ |
| 413 | ["workflow", "inspect", "--file", "/path/to/workflow/definition"], |
| 414 | ["workflow", "inspect", "--action", "mock.foobar"], |
| 415 | ] |
| 416 | |
| 417 | self._validate_parser(args_list) |
| 418 | |
| 419 | @mock.patch("sys.exit", mock.Mock()) |
| 420 | @mock.patch("st2client.shell.__version__", "v2.8.0") |
nothing calls this directly
no test coverage detected