blib/lib/Alien/pdf2json.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 14 | 14 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 5 | 5 | 100.0 |
pod | 0 | 1 | 0.0 |
total | 19 | 20 | 95.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Alien::pdf2json; | ||||||
2 | $Alien::pdf2json::VERSION = '0.001'; | ||||||
3 | 1 | 1 | 124738 | use strict; | |||
1 | 3 | ||||||
1 | 53 | ||||||
4 | 1 | 1 | 6 | use warnings; | |||
1 | 2 | ||||||
1 | 41 | ||||||
5 | |||||||
6 | 1 | 1 | 2624 | use parent 'Alien::Base'; | |||
1 | 1309 | ||||||
1 | 6 | ||||||
7 | 1 | 1 | 211189 | use File::Spec; | |||
1 | 2 | ||||||
1 | 80 | ||||||
8 | |||||||
9 | sub pdf2json_path { | ||||||
10 | 1 | 1 | 0 | 56 | my ($self) = @_; | ||
11 | 1 | 8 | File::Spec->catfile( $self->dist_dir , 'bin', 'pdf2json' ); | ||||
12 | } | ||||||
13 | |||||||
14 | 1; | ||||||
15 | |||||||
16 | __END__ |