File Coverage

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