File Coverage

blib/lib/Business/CyberSource/Response/Role/AuthCode.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::AuthCode;
2 2     2   1092 use strict;
  2         3  
  2         54  
3 2     2   6 use warnings;
  2         3  
  2         44  
4 2     2   7 use namespace::autoclean;
  2         3  
  2         10  
5              
6             our $VERSION = '0.010007'; # VERSION
7              
8 2     2   128 use Moose::Role;
  2         4  
  2         15  
9 2     2   6857 use MooseX::RemoteHelper;
  2         2  
  2         13  
10 2     2   5095 use MooseX::Types::CyberSource qw( _VarcharSeven );
  2         4  
  2         15  
11              
12             has auth_code => (
13             isa => _VarcharSeven,
14             remote_name => 'authorizationCode',
15             predicate => 'has_auth_code',
16             is => 'ro',
17             );
18              
19             1;
20             # ABSTRACT: Authorization Code
21              
22             __END__
23              
24             =pod
25              
26             =encoding UTF-8
27              
28             =head1 NAME
29              
30             Business::CyberSource::Response::Role::AuthCode - Authorization Code
31              
32             =head1 VERSION
33              
34             version 0.010007
35              
36             =head1 BUGS
37              
38             Please report any bugs or feature requests on the bugtracker website
39             https://github.com/xenoterracide/business-cybersource/issues
40              
41             When submitting a bug or request, please include a test-file or a
42             patch to an existing test-file that illustrates the bug or desired
43             feature.
44              
45             =head1 AUTHOR
46              
47             Caleb Cushing <xenoterracide@gmail.com>
48              
49             =head1 COPYRIGHT AND LICENSE
50              
51             This software is Copyright (c) 2016 by Caleb Cushing <xenoterracide@gmail.com>.
52              
53             This is free software, licensed under:
54              
55             The Artistic License 2.0 (GPL Compatible)
56              
57             =cut