File Coverage

blib/lib/Pixie/Info.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Pixie::Info;
2              
3 17     17   23757 use strict;
  17         26  
  17         684  
4 17     17   80 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
  17         26  
  17         11760  
5              
6             require Exporter;
7             require DynaLoader;
8             require AutoLoader;
9              
10             @ISA = qw(Exporter DynaLoader);
11              
12             @EXPORT = qw( );
13             @EXPORT_OK = qw(px_get_info px_set_info);
14             $VERSION = '0.01';
15              
16             bootstrap Pixie::Info $VERSION;
17              
18             1;
19              
20             __END__