(t *testing.T)
| 353 | } |
| 354 | |
| 355 | func TestNewCachesCommand_NoArgsConstraint(t *testing.T) { |
| 356 | cmd := NewCachesCommand() |
| 357 | // caches command doesn't have an explicit Args validator |
| 358 | // (it reads everything from flags) |
| 359 | assert.Nil(t, cmd.Args) |
| 360 | } |
| 361 | |
| 362 | |
| 363 | func TestNewPasswordsCommand_RunReadPasswordFails(t *testing.T) { |
nothing calls this directly
no test coverage detected