File Coverage

blib/lib/SyForm/FieldRole/HTML.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::FieldRole::HTML;
2             BEGIN {
3 6     6   3448 $SyForm::FieldRole::HTML::AUTHORITY = 'cpan:GETTY';
4             }
5             # ABSTRACT: SyForm::ViewFieldRole::HTML configuration of the field
6             $SyForm::FieldRole::HTML::VERSION = '0.103';
7 6     6   42 use Moo::Role;
  6         12  
  6         34  
8              
9             has input => (
10             is => 'ro',
11             predicate => 1,
12             );
13              
14             has html_label => (
15             is => 'ro',
16             predicate => 1,
17             );
18              
19             1;
20              
21             __END__
22              
23             =pod
24              
25             =head1 NAME
26              
27             SyForm::FieldRole::HTML - SyForm::ViewFieldRole::HTML configuration of the field
28              
29             =head1 VERSION
30              
31             version 0.103
32              
33             =head1 AUTHOR
34              
35             Torsten Raudssus <torsten@raudss.us>
36              
37             =head1 COPYRIGHT AND LICENSE
38              
39             This software is copyright (c) 2014 by Torsten Raudssus.
40              
41             This is free software; you can redistribute it and/or modify it under
42             the same terms as the Perl 5 programming language system itself.
43              
44             =cut