File Coverage

blib/lib/Form/Factory/Processor/DeferredValue.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::Processor::DeferredValue;
2             $Form::Factory::Processor::DeferredValue::VERSION = '0.022';
3 1     1   4 use Moose;
  1         2  
  1         6  
4              
5             # ABSTRACT: Tag class for deferred_values
6              
7              
8             has code => (
9             is => 'ro',
10             isa => 'CodeRef',
11             required => 1,
12             );
13              
14              
15             __PACKAGE__->meta->make_immutable;
16              
17             __END__
18              
19             =pod
20              
21             =encoding UTF-8
22              
23             =head1 NAME
24              
25             Form::Factory::Processor::DeferredValue - Tag class for deferred_values
26              
27             =head1 VERSION
28              
29             version 0.022
30              
31             =head1 DESCRIPTION
32              
33             No user serviceable parts. You void your non-existant warranty if you open this up.
34              
35             See L<Form::Factory::Processor/deferred_value>. There's really nothing to see here.
36              
37             =head1 SEE ALSO
38              
39             L<Form::Factory::Processor>
40              
41             =head1 AUTHOR
42              
43             Andrew Sterling Hanenkamp <hanenkamp@cpan.org>
44              
45             =head1 COPYRIGHT AND LICENSE
46              
47             This software is copyright (c) 2015 by Qubling Software LLC.
48              
49             This is free software; you can redistribute it and/or modify it under
50             the same terms as the Perl 5 programming language system itself.
51              
52             =cut