File: Lytro.t

package info (click to toggle)
libimage-exiftool-perl 10.40-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 22,476 kB
  • ctags: 3,496
  • sloc: perl: 231,270; xml: 120; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 690 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Before "make install", this script should be runnable with "make test".
# After "make install" it should work as "perl t/Lytro.t".

BEGIN { $| = 1; print "1..2\n"; $Image::ExifTool::noConfig = 1; }
END {print "not ok 1\n" unless $loaded;}

# test 1: Load the module(s)
use Image::ExifTool 'ImageInfo';
use Image::ExifTool::Lytro;
$loaded = 1;
print "ok 1\n";

use t::TestLib;

my $testname = 'Lytro';
my $testnum = 1;

# test 2: Extract information from Lytro.lfp
{
    ++$testnum;
    my $exifTool = new Image::ExifTool;
    my $info = $exifTool->ImageInfo('t/images/Lytro.lfp');
    print 'not ' unless check($exifTool, $info, $testname, $testnum);
    print "ok $testnum\n";
}


# end