File Coverage

blib/lib/JavaScript/MochiKit/Base.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 JavaScript::MochiKit::Base;
2            
3 1     1   6 use strict;
  1         2  
  1         625  
4 1         110 use base qw[
5             JavaScript::MochiKit::Accessor
6 1     1   6 ];
  1         2  
7            
8 1     1   5 use vars qw [ @Dependencies ];
  1         2  
  1         64  
9            
10             =head1 NAME
11            
12             JavaScript::MochiKit::Base
13            
14             =head1 AUTHOR
15            
16             Sascha Kiefer, C
17            
18             =head1 LICENSE
19            
20             This library is free software, you can redistribute it and/or modify it under
21             the same terms as Perl itself.
22            
23             =cut
24            
25             1;