(t *testing.T)
| 85 | } |
| 86 | |
| 87 | func TestNewAliasCommand_Long(t *testing.T) { |
| 88 | cmd := NewAliasCommand() |
| 89 | assert.Equal(t, "Set, unset, and list aliases, aliases can be used to log in to servers", cmd.Long) |
| 90 | } |
| 91 | |
| 92 | func TestNewAliasCommand_Subcommands(t *testing.T) { |
| 93 | cmd := NewAliasCommand() |
nothing calls this directly
no test coverage detected