(t *testing.T)
| 375 | } |
| 376 | |
| 377 | func TestNewPasswordsCommand_StructureDetails(t *testing.T) { |
| 378 | cmd := NewPasswordsCommand() |
| 379 | assert.Equal(t, "passwords", cmd.Use) |
| 380 | assert.Equal(t, []string{"password", "pass", "pwd"}, cmd.Aliases) |
| 381 | assert.Equal(t, "Create an alternative password", cmd.Short) |
| 382 | assert.NotNil(t, cmd.Run) |
| 383 | } |
| 384 | |
| 385 | func TestNewPasswordsCommand_NoArgsRequired(t *testing.T) { |
| 386 | cmd := NewPasswordsCommand() |
nothing calls this directly
no test coverage detected