File Coverage

blib/lib/Role/Versioning/Scheme.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Role::Versioning::Scheme;
2              
3             our $DATE = '2019-04-14'; # DATE
4             our $VERSION = '0.009'; # VERSION
5              
6 4     4   1731 use Role::Tiny;
  4         8  
  4         16  
7              
8             requires qw(
9             is_valid_version
10             normalize_version
11             cmp_version
12             bump_version
13             parse_version
14             );
15              
16             1;
17             # ABSTRACT: Role for Versioning::Scheme::* modules
18              
19             __END__