Test exif.heic and exif.png in tests/rwrcmp.rs.

This commit is contained in:
KAMADA Ken'ichi 2020-11-21 20:01:08 +09:00
parent 7c113302de
commit 386fb2cc8b
1 changed files with 10 additions and 0 deletions

View File

@ -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");