(t *testing.T)
| 143 | } |
| 144 | |
| 145 | func TestNewSSHCommand_NoAliases(t *testing.T) { |
| 146 | cmd := NewSSHCommand() |
| 147 | assert.Empty(t, cmd.Aliases, "ssh command should have no aliases") |
| 148 | } |
| 149 | |
| 150 | func TestNewSSHCommand_NoExample(t *testing.T) { |
| 151 | cmd := NewSSHCommand() |
nothing calls this directly
no test coverage detected