Fix
All checks were successful
Rust Build / Check (pull_request) Successful in 28s
Rust Build / Test Suite (pull_request) Successful in 27s
Rust Build / Rustfmt (pull_request) Successful in 27s
Rust Build / Clippy (pull_request) Successful in 31s
Rust Build / build (pull_request) Successful in 30s
All checks were successful
Rust Build / Check (pull_request) Successful in 28s
Rust Build / Test Suite (pull_request) Successful in 27s
Rust Build / Rustfmt (pull_request) Successful in 27s
Rust Build / Clippy (pull_request) Successful in 31s
Rust Build / build (pull_request) Successful in 30s
This commit is contained in:
@@ -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 {
|
||||
pub fn to_data(&self) -> Result<Vec<u8>, std::io::Error> {
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user