File Coverage

blib/lib/Finance/AMEX/Transaction/EPPRC/Unknown.pm
Criterion Covered Total %
statement 6 12 50.0
branch n/a
condition n/a
subroutine 2 5 40.0
pod 3 3 100.0
total 11 20 55.0


line stmt bran cond sub pod time code
1             package Finance::AMEX::Transaction::EPPRC::Unknown 0.005;
2              
3 9     9   53 use strict;
  9         17  
  9         226  
4 9     9   40 use warnings;
  9         18  
  9         869  
5              
6             # ABSTRACT: Parse AMEX Transaction/Invoice Level Reconciliation (EPPRC) Unknown Rows
7              
8             sub new {
9 0     0 1   my ($class, %props) = @_;
10 0           my $self = bless {_line => $props{line}}, $class;
11 0           return $self;
12             }
13              
14 0     0 1   sub type {return 'UNKNOWN'}
15              
16             sub line {
17 0     0 1   my ($self) = @_;
18 0           return $self->{_line};
19             }
20              
21             1;
22              
23             __END__