()
| 115 | |
| 116 | @pytest.fixture(scope="module") |
| 117 | def command_validator(): |
| 118 | # CLIDriver can take up a lot of resources so we'll just create one |
| 119 | # instance and use it for all the validation tests. |
| 120 | driver = create_clidriver() |
| 121 | return CommandValidator(driver) |
| 122 | |
| 123 | |
| 124 | @pytest.mark.parametrize("command, subcommand", EXAMPLE_COMMAND_TESTS) |
nothing calls this directly
no test coverage detected