feat(cli): Support for listing all Sonarr tags

This commit is contained in:
2024-11-22 15:35:30 -07:00
parent eefe6392df
commit d96316577a
10 changed files with 74 additions and 63 deletions
+3 -1
View File
@@ -31,7 +31,8 @@ mod tests {
"quality-profiles",
"indexers",
"queued-events",
"root-folders"
"root-folders",
"tags"
)]
subcommand: &str,
) {
@@ -202,6 +203,7 @@ mod tests {
#[case(SonarrListCommand::QueuedEvents, SonarrEvent::GetQueuedEvents)]
#[case(SonarrListCommand::RootFolders, SonarrEvent::GetRootFolders)]
#[case(SonarrListCommand::Series, SonarrEvent::ListSeries)]
#[case(SonarrListCommand::Tags, SonarrEvent::GetTags)]
#[tokio::test]
async fn test_handle_list_command(
#[case] list_command: SonarrListCommand,