File Coverage

blib/lib/RPC/Object/Common.pm
Criterion Covered Total %
statement 21 21 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 28 28 100.0


line stmt bran cond sub pod time code
1             package RPC::Object::Common;
2 1     1   5 use base qw(Exporter);
  1         1  
  1         110  
3 1     1   4 use constant RESPONSE_ERROR => 'e';
  1         1  
  1         67  
4 1     1   3 use constant RESPONSE_NORMAL => 'n';
  1         1  
  1         44  
5 1     1   6 use constant WANT_LIST => 'l';
  1         1  
  1         64  
6 1     1   4 use constant WANT_SCALAR => 's';
  1         1  
  1         37  
7 1     1   3 use strict;
  1         1  
  1         21  
8 1     1   2 use warnings;
  1         1  
  1         53  
9              
10             our @EXPORT = qw(
11             RESPONSE_ERROR
12             RESPONSE_NORMAL
13             WANT_LIST
14             WANT_SCALAR
15             );
16              
17             1;
18             __END__