Added function to make coverart init easier #24

Merged
phoenix merged 4 commits from add_coverart_init into devel 2025-04-04 02:21:31 +00:00
Showing only changes of commit 12134e7cc4 - Show all commits

View File

@@ -23,19 +23,6 @@ pub mod init {
} }
} }
#[cfg(test)]
mod tests {
use crate::coverart;
#[test]
fn test_cover_art_image() {
let path: String = String::from("somepath");
let coverart = coverart::init::init_coverart_only_path(&path);
assert_eq!(path, coverart.path);
}
}
impl CoverArt { impl CoverArt {
pub fn to_data(&self) -> Result<Vec<u8>, std::io::Error> { pub fn to_data(&self) -> Result<Vec<u8>, std::io::Error> {
let path: &String = &self.path; let path: &String = &self.path;
@@ -47,3 +34,16 @@ impl CoverArt {
} }
} }
} }
#[cfg(test)]
mod tests {
use crate::coverart;
#[test]
fn test_cover_art_image() {
let path: String = String::from("somepath");
let coverart = coverart::init::init_coverart_only_path(path.clone());
assert_eq!(path, coverart.path);
}
}