File Coverage

lib/Template/Plugin/Colour/RGB.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod 1 1 100.0
total 9 9 100.0


line stmt bran cond sub pod time code
1             package Template::Plugin::Colour::RGB;
2              
3             use Template::Colour::Class
4 1     1   7092 base => 'Template::Colour::RGB Template::Plugin';
  1         2  
  1         11  
5              
6             our $VERSION = 2.10;
7              
8             sub new {
9 2     2 1 4894 my $class = shift;
10 2         3 my $context = shift;
11 2         16 $class->SUPER::new(@_);
12             }
13              
14             1;
15              
16             __END__