File Coverage

blib/lib/Plack/Middleware/Antibot/FilterBase.pm
Criterion Covered Total %
statement 9 16 56.2
branch n/a
condition n/a
subroutine 3 6 50.0
pod 3 3 100.0
total 15 25 60.0


line stmt bran cond sub pod time code
1             package Plack::Middleware::Antibot::FilterBase;
2              
3 2     2   900 use strict;
  2         4  
  2         60  
4 2     2   7 use warnings;
  2         2  
  2         45  
5              
6 2     2   7 use Carp qw(croak);
  2         2  
  2         292  
7              
8             sub new {
9 0     0 1   my $class = shift;
10 0           my (%params) = @_;
11              
12 0           my $self = {};
13 0           bless $self, $class;
14              
15 0           return $self;
16             }
17              
18             sub score {
19 0     0 1   $_[0]->{score};
20             }
21              
22 0     0 1   sub execute {
23             }
24              
25             1;
26             __END__