(t *testing.T)
| 116 | } |
| 117 | |
| 118 | func TestCompletionCommand_LongHelp(t *testing.T) { |
| 119 | cmd := NewCompletionCommand() |
| 120 | |
| 121 | assert.Contains(t, cmd.Long, "Tab completion provides") |
| 122 | assert.Contains(t, cmd.Long, "Command name completion") |
| 123 | assert.Contains(t, cmd.Long, "Workflow name completion") |
| 124 | assert.Contains(t, cmd.Long, "Engine name completion") |
| 125 | assert.Contains(t, cmd.Long, "bash, zsh, fish, PowerShell") |
| 126 | } |
| 127 | |
| 128 | func TestCompletionCommand_Examples(t *testing.T) { |
| 129 | cmd := NewCompletionCommand() |
nothing calls this directly
no test coverage detected