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   61158 use 5.006;
  1         5  
4 1     1   6 use strict;
  1         2  
  1         26  
5 1     1   6 use warnings;
  1         2  
  1         37  
6              
7 1     1   586 use AudioFile::Info;
  1         8533  
  1         37  
8 1     1   537 use Template::Plugin;
  1         745  
  1         122  
9              
10             require Exporter;
11              
12             our @ISA = qw(Exporter AudioFile::Info Template::Plugin);
13              
14             our $VERSION = '2.0.1';
15              
16             sub new {
17 2     2 1 9223 my ($class, $context, $file, $params) = @_;
18              
19 2         10 my $self = $class->SUPER::new($file, $params);
20              
21 2         925 return $self;
22             }
23              
24             1;
25             __END__