blib/lib/SRS/EPP/Request.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 4 | 6 | 66.6 |
branch | n/a | ||
condition | n/a | ||
subroutine | 2 | 2 | 100.0 |
pod | n/a | ||
total | 6 | 8 | 75.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | |||||||
2 | package SRS::EPP::Request; | ||||||
3 | { | ||||||
4 | $SRS::EPP::Request::VERSION = '0.22'; | ||||||
5 | } | ||||||
6 | |||||||
7 | 1 | 1 | 3337 | use Moose; | |||
1 | 6 | ||||||
1 | 9 | ||||||
8 | |||||||
9 | extends 'SRS::EPP::Message'; | ||||||
10 | |||||||
11 | 1 | 1 | 6822 | use XML::SRS; | |||
0 | |||||||
0 | |||||||
12 | has "+message" => | ||||||
13 | isa => "XML::SRS::Action|XML::SRS::Query", | ||||||
14 | handles => [qw(action_id)], | ||||||
15 | ; | ||||||
16 | |||||||
17 | 1; |