(t *testing.T)
| 230 | } |
| 231 | |
| 232 | func TestChecksCommand_AcceptsOneArg(t *testing.T) { |
| 233 | cmd := NewChecksCommand() |
| 234 | err := cmd.Args(cmd, []string{"42"}) |
| 235 | assert.NoError(t, err, "checks command should accept exactly one argument") |
| 236 | } |
| 237 | |
| 238 | func TestChecksCommand_RejectsMultipleArgs(t *testing.T) { |
| 239 | cmd := NewChecksCommand() |
nothing calls this directly
no test coverage detected