File Coverage

blib/lib/Business/CyberSource/Response/Role/Amount.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Business::CyberSource::Response::Role::Amount;
2 2     2   1062 use strict;
  2         4  
  2         63  
3 2     2   9 use warnings;
  2         4  
  2         278  
4 2     2   13 use namespace::autoclean;
  2         3  
  2         10  
5              
6             our $VERSION = '0.010006'; # VERSION
7              
8 2     2   164 use Moose::Role;
  2         3  
  2         12  
9 2     2   7462 use MooseX::RemoteHelper;
  2         4  
  2         10  
10              
11             has amount => (
12             isa => 'Num',
13             remote_name => 'amount',
14             is => 'rw',
15             predicate => 'has_amount',
16             );
17              
18             1;
19             # ABSTRACT: Role for Amount
20              
21             __END__
22              
23             =pod
24              
25             =encoding UTF-8
26              
27             =head1 NAME
28              
29             Business::CyberSource::Response::Role::Amount - Role for Amount
30              
31             =head1 VERSION
32              
33             version 0.010006
34              
35             =head1 BUGS
36              
37             Please report any bugs or feature requests on the bugtracker website
38             https://github.com/xenoterracide/business-cybersource/issues
39              
40             When submitting a bug or request, please include a test-file or a
41             patch to an existing test-file that illustrates the bug or desired
42             feature.
43              
44             =head1 AUTHOR
45              
46             Caleb Cushing <xenoterracide@gmail.com>
47              
48             =head1 COPYRIGHT AND LICENSE
49              
50             This software is Copyright (c) 2015 by Caleb Cushing <xenoterracide@gmail.com>.
51              
52             This is free software, licensed under:
53              
54             The Artistic License 2.0 (GPL Compatible)
55              
56             =cut