File Coverage

blib/lib/Acme/Web20/Validator/Rule/UsePrototype.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 15 16 93.7


line stmt bran cond sub pod time code
1             #$Id: UsePrototype.pm,v 1.1 2005/11/14 03:39:09 naoya Exp $
2             package Acme::Web20::Validator::Rule::UsePrototype;
3 2     2   971 use strict;
  2         4  
  2         68  
4 2     2   10 use warnings;
  2         4  
  2         54  
5 2     2   9 use base qw (Acme::Web20::Validator::Rule);
  2         4  
  2         314  
6              
7             __PACKAGE__->name('Has prototype.js?');
8              
9             sub validate {
10 1     1 0 4 my ($self, $res) = @_;
11 1         7 $self->is_ok($res->content =~ m/prototype\.js/);
12             }
13              
14             1;