(t *testing.T)
| 52 | } |
| 53 | |
| 54 | func TestNotificationCommandAliases(t *testing.T) { |
| 55 | aliases := notificationCmd.Aliases |
| 56 | found := false |
| 57 | for _, alias := range aliases { |
| 58 | if alias == "notifications" { |
| 59 | found = true |
| 60 | break |
| 61 | } |
| 62 | } |
| 63 | if !found { |
| 64 | t.Error("Expected alias 'notifications' not found") |
| 65 | } |
| 66 | } |
| 67 |