(t *testing.T)
| 262 | } |
| 263 | |
| 264 | func TestNewAliasUnsetCommand_Run_NoMatchingAlias(t *testing.T) { |
| 265 | cleanup := setupTempConfigWithServers(t) |
| 266 | defer cleanup() |
| 267 | |
| 268 | cmd := NewAliasUnsetCommand() |
| 269 | cmd.Run(cmd, []string{"nonexistent"}) |
| 270 | } |
| 271 | |
| 272 | // --- Full command hierarchy tests --- |
| 273 |
nothing calls this directly
no test coverage detected