blib/lib/URI/UTF8/Punycode.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 12 | 12 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 4 | 4 | 100.0 |
pod | n/a | ||
total | 16 | 16 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package URI::UTF8::Punycode; | ||||||
2 | |||||||
3 | 1 | 1 | 26002 | use strict; | |||
1 | 2 | ||||||
1 | 35 | ||||||
4 | 1 | 1 | 5 | use warnings; | |||
1 | 2 | ||||||
1 | 25 | ||||||
5 | |||||||
6 | 1 | 1 | 5 | use Exporter; | |||
1 | 6 | ||||||
1 | 100 | ||||||
7 | |||||||
8 | our @ISA = qw(Exporter); | ||||||
9 | our @EXPORT_OK = qw($VERSION); | ||||||
10 | our @EXPORT = qw(puny_enc puny_dec); | ||||||
11 | |||||||
12 | our $VERSION = '1.00'; | ||||||
13 | |||||||
14 | 1 | 1 | 4 | use XSLoader; | |||
1 | 1 | ||||||
1 | 44 | ||||||
15 | XSLoader::load('URI::UTF8::Punycode', $VERSION); | ||||||
16 | |||||||
17 | 1; | ||||||
18 | |||||||
19 | __END__ |