File Coverage

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


line stmt bran cond sub pod time code
1             package HTML::WidgetValidator::Widget::BlogPet;
2 1     1   6 use base qw(HTML::WidgetValidator::Widget);
  1         2  
  1         98  
3 1     1   5 use warnings;
  1         3  
  1         25  
4 1     1   4 use strict;
  1         1  
  1         23  
5 1     1   4 use Carp;
  1         2  
  1         131  
6            
7             __PACKAGE__->name('BlogPet');
8             __PACKAGE__->url('http://www.blogpet.net/');
9             __PACKAGE__->models([
10             [ { type => 'start', name => 'script',
11             attr => {
12             language => 'JavaScript',
13             charset => 'UTF-8',
14             type => 'text/javascript',
15             src => qr{http://www\.blogpet\.net/js/[0-9A-Fa-f]+\.js},
16             }},
17             { type => 'end', name=>'script' } ],
18            
19             ]);
20            
21             1;
22             __END__