(self)
| 375 | self.assertIn("cache_token = False", stdout) |
| 376 | |
| 377 | def test_run(self): |
| 378 | args_list = [ |
| 379 | ["run", "-h"], |
| 380 | ["run", "abc", "-h"], |
| 381 | ["run", "remote", "hosts=192.168.1.1", "user=st2", 'cmd="ls -l"'], |
| 382 | ["run", "remote-fib", "hosts=192.168.1.1", "3", "8"], |
| 383 | ] |
| 384 | self._validate_parser(args_list, is_subcommand=False) |
| 385 | |
| 386 | def test_runner(self): |
| 387 | args_list = [["runner", "list"], ["runner", "get", "abc"]] |
nothing calls this directly
no test coverage detected