(t *testing.T)
| 224 | } |
| 225 | |
| 226 | func TestChecksCommand_RequiresArg(t *testing.T) { |
| 227 | cmd := NewChecksCommand() |
| 228 | err := cmd.Args(cmd, []string{}) |
| 229 | assert.Error(t, err, "checks command should require exactly one argument") |
| 230 | } |
| 231 | |
| 232 | func TestChecksCommand_AcceptsOneArg(t *testing.T) { |
| 233 | cmd := NewChecksCommand() |
nothing calls this directly
no test coverage detected