File Coverage

blib/lib/Net/Stripe/Constants.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Net::Stripe::Constants;
2             $Net::Stripe::Constants::VERSION = '0.41';
3             # ABSTRACT: Constants for use in validation and unit tests
4              
5 2     2   17 use strict;
  2         16  
  2         92  
6              
7 2     2   12 use constant MIN_API_VERSION => '2011-01-01';
  2         4  
  2         167  
8 2     2   13 use constant MAX_API_VERSION => '2020-03-02';
  2         4  
  2         122  
9              
10             1;
11              
12             __END__
13              
14             =pod
15              
16             =head1 NAME
17              
18             Net::Stripe::Constants - Constants for use in validation and unit tests
19              
20             =head1 VERSION
21              
22             version 0.41
23              
24             =head1 AUTHORS
25              
26             =over 4
27              
28             =item *
29              
30             Luke Closs
31              
32             =item *
33              
34             Rusty Conover
35              
36             =back
37              
38             =head1 COPYRIGHT AND LICENSE
39              
40             This software is copyright (c) 2015 by Prime Radiant, Inc., (c) copyright 2014 Lucky Dinosaur LLC.
41              
42             This is free software; you can redistribute it and/or modify it under
43             the same terms as the Perl 5 programming language system itself.
44              
45             =cut