From fdf40f2683a238fbd90cb78984742b8bb77772a1 Mon Sep 17 00:00:00 2001 From: Antoine Gersant Date: Tue, 30 Oct 2018 23:47:29 -0700 Subject: [PATCH] Removed outdated test --- src/utils.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/utils.rs b/src/utils.rs index a48a8f1..5ed62fa 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -64,12 +64,6 @@ fn test_get_audio_format() { ); } -#[test] -fn test_is_song() { - assert!(is_song(Path::new("animals/🐷/my🐖file.mp3"))); - assert!(!is_song(Path::new("animals/🐷/my🐖file.jpg"))); -} - pub fn is_image(path: &Path) -> bool { let extension = match path.extension() { Some(e) => e,