File Coverage

blib/lib/Image/Info/XS.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Image::Info::XS;
2              
3 1     1   40973 use strict;
  1         2  
  1         31  
4 1     1   4 use warnings;
  1         2  
  1         30  
5              
6             require Exporter;
7 1     1   812 use AutoLoader qw(AUTOLOAD);
  1         1291  
  1         5  
8              
9             our @ISA = qw(Exporter);
10              
11              
12             my @all = qw/image_info image_type/;
13              
14             our %EXPORT_TAGS = ( 'all' => \@all );
15              
16             our @EXPORT_OK = ( @all );
17              
18             our @EXPORT = qw();
19              
20             our $VERSION = '0.1.8';
21              
22             require XSLoader;
23             XSLoader::load('Image::Info::XS', $VERSION);
24              
25             1;
26             __END__