musichoard/src/tui/testmod.rs
Wojciech Kozlowski c015f4c112
All checks were successful
Cargo CI / Build and Test (push) Successful in 1m41s
Cargo CI / Lint (push) Successful in 1m13s
Cargo CI / Build and Test (pull_request) Successful in 3m8s
Cargo CI / Lint (pull_request) Successful in 1m15s
Sort albums by month if two releases of the same artist happen in the same year (#155)
Closes #106

Reviewed-on: #155
2024-03-05 23:24:18 +01:00

13 lines
381 B
Rust

use std::{collections::HashMap, str::FromStr};
use musichoard::collection::{
album::{Album, AlbumDate, AlbumId, AlbumMonth, AlbumSeq},
artist::{Artist, ArtistId, MusicBrainz},
track::{Track, TrackFormat, TrackId, TrackNum, TrackQuality},
};
use once_cell::sync::Lazy;
use crate::tests::*;
pub static COLLECTION: Lazy<Vec<Artist>> = Lazy::new(|| full_collection!());