feat(cli): Support for fetching all sonarr language profiles

This commit is contained in:
2024-11-24 11:36:14 -07:00
parent 5ed278ec9c
commit c98828aec7
2 changed files with 12 additions and 1 deletions
+3 -1
View File
@@ -36,7 +36,8 @@ mod tests {
"root-folders",
"tags",
"tasks",
"updates"
"updates",
"language-profiles"
)]
subcommand: &str,
) {
@@ -211,6 +212,7 @@ mod tests {
#[case(SonarrListCommand::Tags, SonarrEvent::GetTags)]
#[case(SonarrListCommand::Tasks, SonarrEvent::GetTasks)]
#[case(SonarrListCommand::Updates, SonarrEvent::GetUpdates)]
#[case(SonarrListCommand::LanguageProfiles, SonarrEvent::GetLanguageProfiles)]
#[tokio::test]
async fn test_handle_list_command(
#[case] list_command: SonarrListCommand,