File Coverage

blib/lib/Finance/AMEX/Transaction/GRRCN/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::GRRCN::Unknown;
2             $Finance::AMEX::Transaction::GRRCN::Unknown::VERSION = '0.004';
3 8     8   59 use strict;
  8         19  
  8         236  
4 8     8   52 use warnings;
  8         17  
  8         1038  
5              
6             # ABSTRACT: Parse AMEX Global Reconciliation (GRRCN)
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__