File Coverage

blib/lib/Event/RPC.pm
Criterion Covered Total %
statement 0 3 0.0
branch n/a
condition n/a
subroutine 0 1 0.0
pod 0 1 0.0
total 0 5 0.0


line stmt bran cond sub pod time code
1             package Event::RPC;
2              
3             $VERSION = "1.07";
4             $PROTOCOL = "1.00";
5              
6             sub crypt {
7 0     0 0   my $class = shift;
8 0           my ($user, $pass) = @_;
9 0           return crypt($pass, $user);
10             }
11              
12             __END__