File Coverage

blib/lib/Pinto/Role/Plated.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             # ABSTRACT: Something that has chrome plating
2              
3             package Pinto::Role::Plated;
4              
5 56     56   31791 use Moose::Role;
  56         159  
  56         515  
6 56     56   299834 use MooseX::MarkAsMethods ( autoclean => 1 );
  56         186  
  56         537  
7              
8             #-----------------------------------------------------------------------------
9              
10             our $VERSION = '0.14'; # VERSION
11              
12             #-----------------------------------------------------------------------------
13              
14             has chrome => (
15             is => 'ro',
16             isa => 'Pinto::Chrome',
17             handles => [qw(show diag info notice warning error)],
18             required => 1,
19             );
20              
21             #-----------------------------------------------------------------------------
22             1;
23              
24             __END__
25              
26             =pod
27              
28             =encoding UTF-8
29              
30             =for :stopwords Jeffrey Ryan Thalhammer
31              
32             =head1 NAME
33              
34             Pinto::Role::Plated - Something that has chrome plating
35              
36             =head1 VERSION
37              
38             version 0.14
39              
40             =head1 AUTHOR
41              
42             Jeffrey Ryan Thalhammer <jeff@stratopan.com>
43              
44             =head1 COPYRIGHT AND LICENSE
45              
46             This software is copyright (c) 2015 by Jeffrey Ryan Thalhammer.
47              
48             This is free software; you can redistribute it and/or modify it under
49             the same terms as the Perl 5 programming language system itself.
50              
51             =cut