(t *testing.T)
| 43 | } |
| 44 | |
| 45 | func TestNewTrysshCommand_DisableDefaultCompletion(t *testing.T) { |
| 46 | rootCmd := NewTrysshCommand() |
| 47 | |
| 48 | assert.True(t, rootCmd.CompletionOptions.DisableDefaultCmd, |
| 49 | "CompletionOptions.DisableDefaultCmd should be true") |
| 50 | } |
| 51 | |
| 52 | func TestNewTrysshCommand_SubcommandCount(t *testing.T) { |
| 53 | rootCmd := NewTrysshCommand() |
nothing calls this directly
no test coverage detected