File Coverage

blib/lib/Business/Payment/ClearingHouse/Charge.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1             package Business::Payment::ClearingHouse::Charge;
2 2     2   20661 use Moose;
  0            
  0            
3              
4             has 'currency' => (
5             is => 'ro',
6             isa => 'Str'
7             );
8              
9             has 'id' => (
10             is => 'ro',
11             isa => 'Str'
12             );
13              
14             has 'number' => (
15             is => 'ro',
16             isa => 'Str',
17             required => 1
18             );
19              
20             has 'subtotal' => (
21             is => 'ro',
22             isa => 'Int',
23             default => 0
24             );
25              
26             has 'tax' => (
27             is => 'ro',
28             isa => 'Int',
29             default => 0
30             );
31              
32             sub total {
33             my ($self) = @_;
34              
35             return $self->subtotal + $self->tax;
36             }
37              
38             __PACKAGE__->meta->make_immutable;
39              
40             no Moose;
41              
42             1;