File Coverage

blib/lib/Finance/AMEX/Transaction/EPPRC/Base.pm
Criterion Covered Total %
statement 16 18 88.8
branch 2 2 100.0
condition n/a
subroutine 4 5 80.0
pod 2 2 100.0
total 24 27 88.8


line stmt bran cond sub pod time code
1             package Finance::AMEX::Transaction::EPPRC::Base;
2             $Finance::AMEX::Transaction::EPPRC::Base::VERSION = '0.004';
3 8     8   67 use strict;
  8         16  
  8         220  
4 8     8   40 use warnings;
  8         17  
  8         1898  
5              
6             # ABSTRACT: Parse AMEX Chargeback Notification Files (EPPRC) Base methods
7              
8             sub new {
9 1131     1131 1 4153 my ($class, %props) = @_;
10             my $self = bless {
11             _line => $props{line},
12 1131         4532 }, $class;
13              
14 1131         5368 return $self;
15             }
16              
17             sub line {
18 0     0 1 0 my ($self) = @_;
19 0         0 return $self->{_line};
20             }
21              
22             sub _get_column {
23 28492     28492   70358 my ($self, $field) = @_;
24 28492         75534 my $map = $self->field_map->{$field};
25              
26             # if the line is not long enough to handle the start of the field,
27             # it is an optional field that we don't have
28 28492 100       193418 if (length($self->{_line}) < $map->[0]) {
29 24         140 return '';
30             }
31              
32 28468         80709 my $ret = substr($self->{_line}, $map->[0] - 1, $map->[1]);
33 28468         114829 $ret =~ s{\s+\z}{};
34 28468         157654 return $ret;
35             }
36              
37             1;
38              
39             __END__