File Coverage

blib/lib/SRS/EPP/Command/Hello.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1              
2              
3             package SRS::EPP::Command::Hello;
4              
5 1     1   1487 use Moose;
  0            
  0            
6             use MooseX::Method::Signatures;
7             extends 'SRS::EPP::Command';
8              
9             sub match_class {
10             "XML::EPP::Hello";
11             }
12              
13             sub authenticated { 0 }
14             sub simple { 1 }
15              
16             method process( SRS::EPP::Session $session ) {
17             $self->make_response("Greeting");
18             }
19              
20             1;