Removed outdated test

This commit is contained in:
Antoine Gersant 2018-10-30 23:47:29 -07:00
parent cba28e8e2c
commit fdf40f2683

View file

@ -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,