(t *testing.T)
| 313 | } |
| 314 | |
| 315 | func TestExperimentsListSubcommandFlags(t *testing.T) { |
| 316 | cmd := NewExperimentsListSubcommand() |
| 317 | require.NotNil(t, cmd, "list subcommand should be created") |
| 318 | |
| 319 | assert.NotNil(t, cmd.Flag("json"), "should have --json flag") |
| 320 | assert.NotNil(t, cmd.Flag("repo"), "should have --repo flag") |
| 321 | } |
| 322 | |
| 323 | func TestExperimentsAnalyzeSubcommandFlags(t *testing.T) { |
| 324 | cmd := NewExperimentsAnalyzeSubcommand() |
nothing calls this directly
no test coverage detected