(t *testing.T)
| 321 | } |
| 322 | |
| 323 | func TestExperimentsAnalyzeSubcommandFlags(t *testing.T) { |
| 324 | cmd := NewExperimentsAnalyzeSubcommand() |
| 325 | require.NotNil(t, cmd, "analyze subcommand should be created") |
| 326 | |
| 327 | assert.NotNil(t, cmd.Flag("json"), "should have --json flag") |
| 328 | assert.NotNil(t, cmd.Flag("repo"), "should have --repo flag") |
| 329 | } |
| 330 | |
| 331 | func TestExperimentsAnalyzeRequiresArg(t *testing.T) { |
| 332 | cmd := NewExperimentsAnalyzeSubcommand() |
nothing calls this directly
no test coverage detected