(t *testing.T)
| 10 | ) |
| 11 | |
| 12 | func TestAddWizardCommandMentionsCrush(t *testing.T) { |
| 13 | cmd := NewAddWizardCommand(func(string) error { return nil }) |
| 14 | require.NotNil(t, cmd, "Add wizard command should be created") |
| 15 | assert.Contains(t, cmd.Long, "Copilot, Claude, Codex, Gemini, or Crush", "Add wizard help should mention all interactive engine options") |
| 16 | } |
| 17 | |
| 18 | func TestAddWizardCommand_UsesStandardThreePartWorkflowSpecWording(t *testing.T) { |
| 19 | cmd := NewAddWizardCommand(func(string) error { return nil }) |
nothing calls this directly
no test coverage detected