| blib/lib/URI/Encode/XS.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 | 1 | 1 | 52355 | use strict; | |||
| 1 | 2 | ||||||
| 1 | 24 | ||||||
| 2 | 1 | 1 | 5 | use warnings; | |||
| 1 | 1 | ||||||
| 1 | 30 | ||||||
| 3 | package URI::Encode::XS; | ||||||
| 4 | |||||||
| 5 | 1 | 1 | 4 | use XSLoader; | |||
| 1 | 5 | ||||||
| 1 | 20 | ||||||
| 6 | 1 | 1 | 4 | use Exporter 5.57 'import'; | |||
| 1 | 20 | ||||||
| 1 | 60 | ||||||
| 7 | |||||||
| 8 | our $VERSION = '0.11'; | ||||||
| 9 | our @EXPORT_OK = ( qw/uri_encode uri_encode_utf8 uri_decode uri_decode_utf8/ ); | ||||||
| 10 | |||||||
| 11 | XSLoader::load('URI::Encode::XS', $VERSION); | ||||||
| 12 | |||||||
| 13 | 1; | ||||||
| 14 | __END__ |