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 | 31 | 31 | 30478 | use strict; | |||
31 | 57 | ||||||
31 | 1220 | ||||||
4 | 31 | 31 | 164 | use vars qw($VERSION @ISA @EXPORT @EXPORT_OK); | |||
31 | 57 | ||||||
31 | 5145 | ||||||
5 | |||||||
6 | require Exporter; | ||||||
7 | require DynaLoader; | ||||||
8 | require AutoLoader; | ||||||
9 | |||||||
10 | @ISA = qw(Exporter DynaLoader); | ||||||
11 | @EXPORT = qw( ); | ||||||
12 | @EXPORT_OK = qw(px_get_info px_set_info); | ||||||
13 | $VERSION = '2.08_02'; | ||||||
14 | |||||||
15 | bootstrap Pixie::Info $VERSION; | ||||||
16 | |||||||
17 | 1; | ||||||
18 | |||||||
19 | __END__ |