Ensure consistency between in-memory and database state #146

Merged
wojtek merged 8 commits from 120---ensure-consistency-between-in-memory-and-database-state into main 2024-03-01 09:00:53 +01:00
2 changed files with 7 additions and 1 deletions
Showing only changes of commit 84fe0930a4 - Show all commits

View File

@ -954,4 +954,10 @@ mod tests {
assert_eq!(actual_err, expected_err);
assert_eq!(actual_err.to_string(), expected_err.to_string());
}
#[test]
fn empty() {
let music_hoard = MusicHoard::empty();
assert!(!format!("{music_hoard:?}").is_empty());
}
}

View File

@ -85,7 +85,7 @@ mod tests {
#[test]
fn no_library_no_database() {
MusicHoardBuilder::default();
MusicHoardBuilder::default().build();
}
#[test]