File Coverage

blib/lib/HTTP/MobileAttribute/Plugin/Core.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 17 17 100.0


line stmt bran cond sub pod time code
1             package HTTP::MobileAttribute::Plugin::Core;
2 19     19   13578 use strict;
  19         48  
  19         729  
3 19     19   161 use warnings;
  19         37  
  19         627  
4 19     19   107 use base qw/HTTP::MobileAttribute::Plugin/;
  19         50  
  19         4765  
5              
6             sub new {
7 95     95 1 6960 my ($class, $config, $c) = @_;
8 95         478 my $self = $class->SUPER::new($config, $c);
9             # $c->load_plugins();
10 95         2121 $self;
11             }
12              
13             1;