Add a filtering tool to only show only certain release group types #252

Merged
wojtek merged 14 commits from 161---add-a-filtering-tool-to-only-show-only-certain-release-group-types into main 2025-01-04 22:42:27 +01:00
Showing only changes of commit de5888e9a0 - Show all commits

View File

@ -473,4 +473,12 @@ mod tests {
let expected = meta.clone().with_date(right.date); let expected = meta.clone().with_date(right.date);
assert_eq!(expected, left.merge(right)); assert_eq!(expected, left.merge(right));
} }
#[test]
fn secondary_types_all_variants() {
let mut variants = AlbumSecondaryType::all_variants().to_vec();
variants.sort_unstable();
variants.dedup();
assert_eq!(variants, AlbumSecondaryType::all_variants().to_vec());
}
} }