File Coverage

lib/Business/Fixflo/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::Fixflo::Version;
2              
3             =head1 NAME
4              
5             Business::Fixflo::Version
6              
7             =head1 DESCRIPTION
8              
9             A role for a fixflo version information.
10              
11             =cut
12              
13 16     16   7970 use strict;
  16         34  
  16         452  
14 16     16   74 use warnings;
  16         32  
  16         401  
15              
16 16     16   68 use Moo::Role;
  16         30  
  16         100  
17              
18             $Business::Fixflo::API_VERSION = 'v2';
19              
20             =head1 AUTHOR
21              
22             Lee Johnson - C
23              
24             This library is free software; you can redistribute it and/or modify it under
25             the same terms as Perl itself. If you would like to contribute documentation,
26             features, bug fixes, or anything else then please raise an issue / pull request:
27              
28             https://github.com/Humanstate/business-fixflo
29              
30             =cut
31              
32             1;