File Coverage

blib/lib/Form/Factory/Control/Role/PresetValue.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Form::Factory::Control::Role::PresetValue;
2             $Form::Factory::Control::Role::PresetValue::VERSION = '0.022';
3 1     1   448 use Moose::Role;
  1         3  
  1         5  
4              
5             # ABSTRACT: controls with preset values
6              
7              
8             1;
9              
10             __END__
11              
12             =pod
13              
14             =encoding UTF-8
15              
16             =head1 NAME
17              
18             Form::Factory::Control::Role::PresetValue - controls with preset values
19              
20             =head1 VERSION
21              
22             version 0.022
23              
24             =head1 DESCRIPTION
25              
26             This role provides no methods or attributes. It flags the control as one with a preset value that does not change based upon user input. Buttons and hidden values are examples of presets.
27              
28             =head1 AUTHOR
29              
30             Andrew Sterling Hanenkamp <hanenkamp@cpan.org>
31              
32             =head1 COPYRIGHT AND LICENSE
33              
34             This software is copyright (c) 2015 by Qubling Software LLC.
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