File Coverage

blib/lib/HTML/WidgetValidator/Widget.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package HTML::WidgetValidator::Widget;
2 1     1   5 use base qw(Class::Data::Inheritable);
  1         1  
  1         854  
3 1     1   369 use warnings;
  1         1  
  1         22  
4 1     1   6 use strict;
  1         2  
  1         58  
5            
6             __PACKAGE__->mk_classdata('models' => [] );
7             __PACKAGE__->mk_classdata('name' => undef );
8             __PACKAGE__->mk_classdata('url' => undef );
9             __PACKAGE__->mk_classdata('description' => '' );
10            
11             1;
12             __END__