(t *testing.T)
| 254 | } |
| 255 | |
| 256 | func TestNewAliasUnsetCommand_Run(t *testing.T) { |
| 257 | cleanup := setupTempConfigWithServers(t) |
| 258 | defer cleanup() |
| 259 | |
| 260 | cmd := NewAliasUnsetCommand() |
| 261 | cmd.Run(cmd, []string{"myserver"}) |
| 262 | } |
| 263 | |
| 264 | func TestNewAliasUnsetCommand_Run_NoMatchingAlias(t *testing.T) { |
| 265 | cleanup := setupTempConfigWithServers(t) |
nothing calls this directly
no test coverage detected