File Coverage

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