File Coverage

blib/lib/Catmandu/AlephX/Op/IllLoanInfo.pm
Criterion Covered Total %
statement 9 20 45.0
branch 0 2 0.0
condition n/a
subroutine 3 6 50.0
pod 0 3 0.0
total 12 31 38.7


line stmt bran cond sub pod time code
1             package Catmandu::AlephX::Op::IllLoanInfo;
2 1     1   108539 use Catmandu::Sane;
  1         199937  
  1         7  
3 1     1   375 use Catmandu::Util qw(:check :is);
  1         3  
  1         448  
4 1     1   20 use Moo;
  1         2  
  1         6  
5              
6             our $VERSION = "1.073";
7              
8             with('Catmandu::AlephX::Response');
9              
10             has z36 => (
11             is => 'ro',
12             lazy => 1,
13             isa => sub { check_hash_ref($_[0]); },
14             default => sub {
15             +{};
16             }
17             );
18              
19 0     0 0   sub op { 'ill-loan-info' }
20              
21             sub parse {
22 0     0 0   my($class,$str_ref) = @_;
23 0           my $xpath = xpath($str_ref);
24 0           my $op = op();
25              
26 0           my $z36 = {};
27              
28 0           my($z) = $xpath->find("/ill-LOAN-INFO/z36")->get_nodelist();
29              
30 0 0         $z36 = get_children($z) if $z;
31              
32 0           __PACKAGE__->new(
33             session_id => $xpath->findvalue('/ill-LOAN-INFO/session-id'),
34             errors => $class->parse_errors($xpath),
35             z36 => $z36,
36             content_ref => $str_ref
37             );
38             }
39              
40             sub parse_errors {
41 0     0 0   my($self,$xpath)=@_;
42 0           [map { $_->to_literal; } $xpath->find("/ill-LOAN-INFO/error|/ill-loan-info/error")->get_nodelist()];
  0            
43             }
44              
45             1;