File Coverage

blib/lib/Business/CyberSource/Response/Role/ProcessorResponse.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


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