File Coverage

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