File Coverage

blib/lib/Template/Plugin/AudioFile/Info.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 1 1 100.0
total 24 24 100.0


line stmt bran cond sub pod time code
1             package Template::Plugin::AudioFile::Info;
2              
3 1     1   48160 use 5.006;
  1         4  
4 1     1   5 use strict;
  1         2  
  1         17  
5 1     1   4 use warnings;
  1         1  
  1         25  
6              
7 1     1   426 use AudioFile::Info;
  1         6800  
  1         28  
8 1     1   406 use Template::Plugin;
  1         544  
  1         95  
9              
10             require Exporter;
11              
12             our @ISA = qw(Exporter AudioFile::Info Template::Plugin);
13              
14             our $VERSION = '2.0.0';
15              
16             sub new {
17 2     2 1 6943 my ($class, $context, $file, $params) = @_;
18              
19 2         7 my $self = $class->SUPER::new($file, $params);
20              
21 2         689 return $self;
22             }
23              
24             1;
25             __END__