File Coverage

blib/lib/Parcel/Track/Role/Base.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Parcel::Track::Role::Base;
2             # ABSTRACT: Parcel::Track base role
3              
4 3     3   19862 use Moo::Role;
  3         10141  
  3         19  
5 3     3   991 use Types::Standard qw( Str );
  3         4  
  3         49  
6              
7             our $VERSION = '0.003';
8              
9             has id => (
10             is => 'ro',
11             isa => Str,
12             );
13              
14             requires 'uri';
15             requires 'track';
16              
17             1;
18              
19             #
20             # This file is part of Parcel-Track
21             #
22             # This software is copyright (c) 2015 by Keedi Kim.
23             #
24             # This is free software; you can redistribute it and/or modify it under
25             # the same terms as the Perl 5 programming language system itself.
26             #
27              
28             __END__