File Coverage

blib/lib/Form/Factory/Interface/HTML/Widget/Span.pm
Criterion Covered Total %
statement 4 4 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod 0 1 0.0
total 6 7 85.7


line stmt bran cond sub pod time code
1             package Form::Factory::Interface::HTML::Widget::Span;
2             $Form::Factory::Interface::HTML::Widget::Span::VERSION = '0.022';
3 1     1   5 use Moose;
  1         2  
  1         7  
4              
5             extends qw( Form::Factory::Interface::HTML::Widget::Element );
6              
7             # ABSTRACT: HTML interface widget helper
8              
9              
10             has '+tag_name' => (
11             default => 'span',
12             );
13              
14             has '+content' => (
15             required => 1,
16             );
17              
18 5     5 0 15 sub has_content { 1 }
19              
20              
21             __PACKAGE__->meta->make_immutable;
22              
23             __END__
24              
25             =pod
26              
27             =encoding UTF-8
28              
29             =head1 NAME
30              
31             Form::Factory::Interface::HTML::Widget::Span - HTML interface widget helper
32              
33             =head1 VERSION
34              
35             version 0.022
36              
37             =head1 DESCRIPTION
38              
39             Move along. Nothing to see here.
40              
41             =for Pod::Coverage .*
42              
43             =head1 AUTHOR
44              
45             Andrew Sterling Hanenkamp <hanenkamp@cpan.org>
46              
47             =head1 COPYRIGHT AND LICENSE
48              
49             This software is copyright (c) 2015 by Qubling Software LLC.
50              
51             This is free software; you can redistribute it and/or modify it under
52             the same terms as the Perl 5 programming language system itself.
53              
54             =cut