File Coverage

blib/lib/HTML/WidgetValidator/Widget/TsukumoRanking.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::TsukumoRanking;
2 1     1   7 use strict;
  1         2  
  1         30  
3 1     1   4 use warnings;
  1         2  
  1         26  
4 1     1   5 use base qw(HTML::WidgetValidator::Widget);
  1         1  
  1         100  
5            
6             __PACKAGE__->name('TSUKUMO Ranking');
7             __PACKAGE__->url('http://labs.tsukumo.co.jp/2007/08/post_3.html');
8             __PACKAGE__->models([
9             [
10             {
11             "name" => "script",
12             "type" => "start",
13             "attr" => {
14             "src" => "http://shop.tsukumo.co.jp/blogparts/ranking/runner.js",
15             "type" => "text/javascript"
16             }
17             },
18             {
19             "name" => "script",
20             "type" => "end"
21             }
22             ]
23             ]);
24            
25             1;
26            
27             __END__