File Coverage

blib/lib/SyForm/Role/Label.pm
Criterion Covered Total %
statement 4 4 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 6 6 100.0


line stmt bran cond sub pod time code
1             package SyForm::Role::Label;
2             BEGIN {
3 7     7   15491 $SyForm::Role::Label::AUTHORITY = 'cpan:GETTY';
4             }
5             # ABSTRACT: A label for the form
6             $SyForm::Role::Label::VERSION = '0.103';
7 7     7   51 use Moo::Role;
  7         12  
  7         40  
8              
9             has label => (
10             is => 'ro',
11             predicate => 1,
12             );
13              
14             1;
15              
16             __END__
17              
18             =pod
19              
20             =head1 NAME
21              
22             SyForm::Role::Label - A label for the form
23              
24             =head1 VERSION
25              
26             version 0.103
27              
28             =head1 AUTHOR
29              
30             Torsten Raudssus <torsten@raudss.us>
31              
32             =head1 COPYRIGHT AND LICENSE
33              
34             This software is copyright (c) 2014 by Torsten Raudssus.
35              
36             This is free software; you can redistribute it and/or modify it under
37             the same terms as the Perl 5 programming language system itself.
38              
39             =cut