File Coverage

blib/lib/HTML/FormHandler/Widget/Field/NoRender.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 10 11 90.9


line stmt bran cond sub pod time code
1             package HTML::FormHandler::Widget::Field::NoRender;
2             # ABSTRACT: no rendering widget
3             $HTML::FormHandler::Widget::Field::NoRender::VERSION = '0.40068';
4 5     5   3711 use Moose::Role;
  5         13  
  5         47  
5              
6              
7 6     6 0 29 sub render { '' }
8              
9 5     5   25067 use namespace::autoclean;
  5         12  
  5         46  
10             1;
11              
12             __END__
13              
14             =pod
15              
16             =encoding UTF-8
17              
18             =head1 NAME
19              
20             HTML::FormHandler::Widget::Field::NoRender - no rendering widget
21              
22             =head1 VERSION
23              
24             version 0.40068
25              
26             =head1 SYNOPSIS
27              
28             Renders a field as the empty string.
29              
30             =head1 AUTHOR
31              
32             FormHandler Contributors - see HTML::FormHandler
33              
34             =head1 COPYRIGHT AND LICENSE
35              
36             This software is copyright (c) 2017 by Gerda Shank.
37              
38             This is free software; you can redistribute it and/or modify it under
39             the same terms as the Perl 5 programming language system itself.
40              
41             =cut