File Coverage

blib/lib/Business/CyberSource/Message.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Business::CyberSource::Message;
2 11     11   5678 use strict;
  11         13  
  11         288  
3 11     11   34 use warnings;
  11         12  
  11         252  
4 11     11   38 use namespace::autoclean;
  11         13  
  11         61  
5              
6             our $VERSION = '0.010007'; # VERSION
7              
8 11     11   690 use Moose;
  11         16  
  11         51  
9             extends 'Business::CyberSource::MessagePart';
10             with qw(
11             Business::CyberSource::Role::Traceable
12             Business::CyberSource::Role::MerchantReferenceCode
13             );
14              
15             __PACKAGE__->meta->make_immutable;
16             1;
17              
18             # ABSTRACT: Abstract Message Class;
19              
20             __END__
21              
22             =pod
23              
24             =encoding UTF-8
25              
26             =head1 NAME
27              
28             Business::CyberSource::Message - Abstract Message Class;
29              
30             =head1 VERSION
31              
32             version 0.010007
33              
34             =head1 EXTENDS
35              
36             L<Business::CyberSource::MessagePart>
37              
38             =head1 WITH
39              
40             =over
41              
42             =item L<Business::CyberSource::Role::MerchantReferenceCode>
43              
44             =back
45              
46             =head1 BUGS
47              
48             Please report any bugs or feature requests on the bugtracker website
49             https://github.com/xenoterracide/business-cybersource/issues
50              
51             When submitting a bug or request, please include a test-file or a
52             patch to an existing test-file that illustrates the bug or desired
53             feature.
54              
55             =head1 AUTHOR
56              
57             Caleb Cushing <xenoterracide@gmail.com>
58              
59             =head1 COPYRIGHT AND LICENSE
60              
61             This software is Copyright (c) 2016 by Caleb Cushing <xenoterracide@gmail.com>.
62              
63             This is free software, licensed under:
64              
65             The Artistic License 2.0 (GPL Compatible)
66              
67             =cut