File Coverage

lib/Mozilla/Persona/Validate.pm
Criterion Covered Total %
statement 12 17 70.5
branch n/a
condition n/a
subroutine 4 7 57.1
pod 2 3 66.6
total 18 27 66.6


line stmt bran cond sub pod time code
1             # Copyrights 2012 by [Mark Overmeer].
2             # For other contributors see ChangeLog.
3             # See the manual pages for details on the licensing terms.
4             # Pod stripped from pm file by OODoc 2.00.
5 1     1   1092 use warnings;
  1         3  
  1         31  
6 1     1   6 use strict;
  1         1  
  1         38  
7              
8             package Mozilla::Persona::Validate;
9 1     1   6 use vars '$VERSION';
  1         2  
  1         49  
10             $VERSION = '0.12';
11              
12              
13 1     1   6 use Log::Report qw/persona/;
  1         2  
  1         8  
14              
15              
16 0     0 1   sub new(%) {my $class = shift; (bless {}, $class)->init({@_}) }
  0            
17             sub init($)
18 0     0 0   { my ($self, $args) = @_;
19 0           $self;
20             }
21              
22             #---------------
23              
24 0     0 1   sub isValid($$) { panic }
25              
26             1;