File Coverage

blib/lib/HTML/WidgetValidator/Widget/Wassr.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::Wassr;
2 1     1   4 use strict;
  1         2  
  1         22  
3 1     1   4 use warnings;
  1         2  
  1         20  
4 1     1   4 use base qw(HTML::WidgetValidator::Widget);
  1         2  
  1         236  
5            
6             our $VERSION = '0.01';
7            
8             __PACKAGE__->name('Wassr');
9             __PACKAGE__->url('http://wassr.jp/');
10             __PACKAGE__->models([
11             [
12             {
13             "text" => "",
23             "name" => "script",
24             "type" => "end"
25             }
26             ],
27             [
28             {
29             "text" => "",
42             "name" => "script",
43             "type" => "end"
44             }
45             ]
46             ]);
47            
48             1;
49            
50             __END__