File Coverage

blib/lib/HTML/WidgetValidator/Widget/PukaPukaRei.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::PukaPukaRei;
2 1     1   7 use strict;
  1         2  
  1         36  
3 1     1   5 use warnings;
  1         1  
  1         51  
4 1     1   6 use base qw(HTML::WidgetValidator::Widget);
  1         3  
  1         233  
5              
6             our $VERSION = '0.01';
7              
8             __PACKAGE__->name('PukaPukaRei');
9             __PACKAGE__->url('http://www.evastore.jp/blog_acce.html');
10             __PACKAGE__->models([
11             [
12             {
13             "name" => "script",
14             "type" => "start",
15             "attr" => {
16             "src" => qr{http://blogtool.evastore.jp/puka_rei/pukapuka\d+.js},
17             "type" => "text/javascript"
18             }
19             },
20             {
21             "name" => "script",
22             "type" => "end"
23             }
24             ]
25             ]);
26              
27             1;
28              
29             __END__