(self, *args)
| 19 | |
| 20 | class TestProcessProxyOptions: |
| 21 | def p(self, *args): |
| 22 | parser = MockParser() |
| 23 | opts = options.Options() |
| 24 | cmdline.common_options(parser, opts) |
| 25 | args = parser.parse_args(args=args) |
| 26 | pconf = main.process_options(parser, opts, args) |
| 27 | return parser, pconf |
| 28 | |
| 29 | def assert_noerr(self, *args): |
| 30 | m, p = self.p(*args) |
no test coverage detected