File Coverage

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