File Coverage

blib/lib/Business/Monzo/Version.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 Business::Monzo::Version;
2              
3             =head1 NAME
4              
5             Business::Monzo::Version
6              
7             =head1 DESCRIPTION
8              
9             A role for a Monzo version information.
10              
11             =cut
12              
13 10     10   4939 use strict;
  10         23  
  10         313  
14 10     10   52 use warnings;
  10         20  
  10         287  
15              
16 10     10   45 use Moo::Role;
  10         21  
  10         65  
17              
18             $Business::Monzo::API_VERSION = 'v1';
19             $Business::Monzo::API_URL = 'https://api.monzo.com';
20              
21             =head1 AUTHOR
22              
23             Lee Johnson - C<leejo@cpan.org>
24              
25             This library is free software; you can redistribute it and/or modify it under
26             the same terms as Perl itself. If you would like to contribute documentation,
27             features, bug fixes, or anything else then please raise an issue / pull request:
28              
29             https://github.com/leejo/business-monzo
30              
31             =cut
32              
33             1;