(t *testing.T)
| 106 | } |
| 107 | |
| 108 | func TestNewUsersCommand_Run_NonExistentUser(t *testing.T) { |
| 109 | cleanup := setupTempConfig(t) |
| 110 | defer cleanup() |
| 111 | |
| 112 | cmd := NewUsersCommand() |
| 113 | cmd.Run(cmd, []string{"nonexistent"}) |
| 114 | } |
| 115 | |
| 116 | // --- Ports command --- |
| 117 |
nothing calls this directly
no test coverage detected