File Coverage

blib/lib/SRS/EPP/Command/Check.pm
Criterion Covered Total %
statement 6 7 85.7
branch n/a
condition n/a
subroutine 2 3 66.6
pod n/a
total 8 10 80.0


line stmt bran cond sub pod time code
1              
2             package SRS::EPP::Command::Check;
3             {
4             $SRS::EPP::Command::Check::VERSION = '0.22';
5             }
6              
7 1     1   3014 use Moose;
  1         3  
  1         9  
8             extends 'SRS::EPP::Command';
9              
10             with 'SRS::EPP::Command::PayloadClass';
11              
12             sub action {
13 0     0     "check";
14             }
15              
16 1     1   8271 use Module::Pluggable search_path => [__PACKAGE__];
  1         745  
  1         7  
17              
18             1;