(t *testing.T)
| 126 | } |
| 127 | |
| 128 | func TestCompletionCommand_Examples(t *testing.T) { |
| 129 | cmd := NewCompletionCommand() |
| 130 | |
| 131 | // Verify examples are present for all shells |
| 132 | assert.Contains(t, cmd.Example, "gh aw completion install") |
| 133 | assert.Contains(t, cmd.Example, "gh aw completion bash") |
| 134 | assert.Contains(t, cmd.Example, "gh aw completion zsh") |
| 135 | assert.Contains(t, cmd.Example, "gh aw completion fish") |
| 136 | assert.Contains(t, cmd.Example, "gh aw completion powershell") |
| 137 | } |
| 138 | |
| 139 | func TestCompletionCommand_ValidArgs(t *testing.T) { |
| 140 | cmd := NewCompletionCommand() |
nothing calls this directly
no test coverage detected