File Coverage

blib/lib/App/Slackeria/Plugin/Gentoo.pm
Criterion Covered Total %
statement 12 14 85.7
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 1 0.0
total 16 20 80.0


line stmt bran cond sub pod time code
1             package App::Slackeria::Plugin::Gentoo;
2              
3 1     1   5338455 use strict;
  1         12  
  1         144  
4 1     1   17 use warnings;
  1         2  
  1         118  
5 1     1   145 use 5.010;
  1         5  
  1         62  
6              
7 1     1   927 use parent 'App::Slackeria::Plugin::Whohas';
  1         556  
  1         6  
8              
9             our $VERSION = '0.12';
10              
11             sub check {
12 0     0 0   my ($self) = @_;
13              
14 0           return $self->run_whohas( 'gentoo', $self->{conf}->{name} );
15             }
16              
17             1;
18              
19             __END__