File Coverage

blib/lib/HTML/WidgetValidator/Widget/ChonmageKacho.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::ChonmageKacho;
2 1     1   7 use strict;
  1         2  
  1         33  
3 1     1   4 use warnings;
  1         2  
  1         24  
4 1     1   4 use base qw(HTML::WidgetValidator::Widget);
  1         2  
  1         166  
5            
6             our $VERSION = '0.01';
7            
8             __PACKAGE__->name('Chonmage Kacho');
9             __PACKAGE__->url('http://chonmage.netcinema.tv/download/');
10             __PACKAGE__->models([
11             [
12             {
13             "name" => "script",
14             "type" => "start",
15             "attr" => {
16             "language" => "JavaScript",
17             "src" => qr|http://chonmage\.netcinema\.tv/blog/\d+\.js|,
18             "charset" => "Shift_JIS"
19             }
20             },
21             {
22             "name" => "script",
23             "type" => "end"
24             }
25             ]
26             ]);
27            
28             1;
29            
30             __END__