From 386fb2cc8b2ca9150682ee1e91c4d4fceda1ce75 Mon Sep 17 00:00:00 2001 From: KAMADA Ken'ichi Date: Sat, 21 Nov 2020 20:01:08 +0900 Subject: [PATCH] Test exif.heic and exif.png in tests/rwrcmp.rs. --- tests/rwrcmp.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/rwrcmp.rs b/tests/rwrcmp.rs index d49cab0..e2334cc 100644 --- a/tests/rwrcmp.rs +++ b/tests/rwrcmp.rs @@ -40,11 +40,21 @@ use exif::Error; use exif::{Exif, In, Reader, Value, Tag}; use exif::experimental::Writer; +#[test] +fn exif_heic() { + rwr_compare("tests/exif.heic"); +} + #[test] fn exif_jpg() { rwr_compare("tests/exif.jpg"); } +#[test] +fn exif_png() { + rwr_compare("tests/exif.png"); +} + #[test] fn exif_tif() { rwr_compare("tests/exif.tif");