ArbitraryArgs
(t *testing.T)
| 156 | // ArbitraryArgs |
| 157 | |
| 158 | func TestArbitraryArgs(t *testing.T) { |
| 159 | c := getCommand(ArbitraryArgs, false) |
| 160 | output, err := executeCommand(c, "a", "b") |
| 161 | expectSuccess(output, err, t) |
| 162 | } |
| 163 | |
| 164 | func TestArbitraryArgs_WithValid(t *testing.T) { |
| 165 | c := getCommand(ArbitraryArgs, true) |
nothing calls this directly
no test coverage detected