(t *testing.T)
| 329 | } |
| 330 | |
| 331 | func TestExperimentsAnalyzeRequiresArg(t *testing.T) { |
| 332 | cmd := NewExperimentsAnalyzeSubcommand() |
| 333 | require.NotNil(t, cmd, "analyze subcommand should be created") |
| 334 | |
| 335 | err := cmd.Args(cmd, []string{}) |
| 336 | assert.Error(t, err, "analyze should require exactly 1 argument") |
| 337 | } |
nothing calls this directly
no test coverage detected