File Coverage

blib/lib/Business/NAB/Australian/DirectEntry/Returns/TotalRecord.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 0 1 0.0
total 22 23 95.6


line stmt bran cond sub pod time code
1             package Business::NAB::Australian::DirectEntry::Returns::TotalRecord;
2             $Business::NAB::Australian::DirectEntry::Returns::TotalRecord::VERSION = '0.03';
3             =head1 NAME
4              
5             Business::NAB::Australian::DirectEntry::Return::TotalRecord;
6              
7             =head1 DESCRIPTION
8              
9             Class for total record in the "Australian Direct Entry Payments"
10             returns file. Inherits all logic/attributes from
11             L<Business::NAB::Australian::DirectEntry::Payments::TotalRecord>.
12              
13             =cut
14              
15 1     1   782 use strict;
  1         2  
  1         36  
16 1     1   4 use warnings;
  1         2  
  1         99  
17 1     1   9 use feature qw/ signatures /;
  1         3  
  1         167  
18              
19 1     1   5 use Moose;
  1         1  
  1         10  
20             extends 'Business::NAB::Australian::DirectEntry::Payments::TotalRecord';
21 1     1   8105 no warnings qw/ experimental::signatures /;
  1         2  
  1         127  
22              
23 2     2 0 109 sub record_type { 7 }
24              
25             __PACKAGE__->meta->make_immutable;