blib/lib/Digest/JHash.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 Digest::JHash; | ||||||
2 | |||||||
3 | 1 | 1 | 28681 | use strict; | |||
1 | 2 | ||||||
1 | 36 | ||||||
4 | 1 | 1 | 6 | use warnings; | |||
1 | 1 | ||||||
1 | 54 | ||||||
5 | |||||||
6 | require 5.008; | ||||||
7 | |||||||
8 | require Exporter; | ||||||
9 | require DynaLoader; | ||||||
10 | 1 | 1 | 6 | use vars qw(@ISA @EXPORT_OK $VERSION); | |||
1 | 3 | ||||||
1 | 122 | ||||||
11 | |||||||
12 | @ISA = qw(Exporter DynaLoader); | ||||||
13 | |||||||
14 | @EXPORT_OK = qw( jhash ); | ||||||
15 | $VERSION = '0.08'; | ||||||
16 | |||||||
17 | bootstrap Digest::JHash $VERSION; | ||||||
18 | |||||||
19 | 1; | ||||||
20 | |||||||
21 | __END__ |