blib/lib/SRS/EPP/Request.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 | package SRS::EPP::Request; | ||||||
3 | |||||||
4 | 1 | 1 | 1506 | use Moose; | |||
0 | |||||||
0 | |||||||
5 | use Moose::Util::TypeConstraints; | ||||||
6 | |||||||
7 | extends 'SRS::EPP::Message'; | ||||||
8 | |||||||
9 | use XML::SRS; | ||||||
10 | has "+message" => | ||||||
11 | isa => "XML::SRS::Action|XML::SRS::Query", | ||||||
12 | handles => [ qw(action_id) ], | ||||||
13 | ; | ||||||
14 | |||||||
15 | 1; |