File Coverage

blib/lib/Finance/AMEX/Transaction/EPRAW/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::EPRAW::Unknown;
2             $Finance::AMEX::Transaction::EPRAW::Unknown::VERSION = '0.003';
3 7     7   44 use strict;
  7         130  
  7         188  
4 7     7   38 use warnings;
  7         16  
  7         917  
5              
6             # ABSTRACT: Parse AMEX Reconciliation Files (EPRAW) Unknown Rows
7              
8             sub new {
9 0     0 1   my ($class, %props) = @_;
10             my $self = bless {
11             _line => $props{line},
12 0           }, $class;
13 0           return $self;
14             }
15              
16 0     0 1   sub type {return 'UNKNOWN'}
17              
18             sub line {
19 0     0 1   my ($self) = @_;
20 0           return $self->{_line};
21             }
22              
23             1;
24              
25             __END__