File Coverage

blib/lib/SRS/EPP/Command/Info.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::Info;
3             {
4             $SRS::EPP::Command::Info::VERSION = '0.22';
5             }
6              
7 1     1   2659 use Moose;
  1         2  
  1         7  
8             extends 'SRS::EPP::Command';
9              
10 1     1   6656 use Module::Pluggable search_path => [__PACKAGE__];
  1         2  
  1         14  
11             with 'SRS::EPP::Command::PayloadClass';
12              
13             sub action {
14 0     0     "info";
15             }
16              
17             1;