| blib/lib/Acme/Your.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % | 
| statement | 14 | 14 | 100.0 | 
| branch | 1 | 2 | 50.0 | 
| condition | n/a | ||
| subroutine | 4 | 4 | 100.0 | 
| pod | n/a | ||
| total | 19 | 20 | 95.0 | 
| line | stmt | bran | cond | sub | pod | time | code | 
|---|---|---|---|---|---|---|---|
| 1 | package Acme::Your; | ||||||
| 2 | 5 | 5 | 136121 | use strict; | |||
| 5 | 10 | ||||||
| 5 | 290 | ||||||
| 3 | 5 | 5 | 24 | use warnings; | |||
| 5 | 10 | ||||||
| 5 | 197 | ||||||
| 4 | require v5.6; | ||||||
| 5 | |||||||
| 6 | 5 | 5 | 24 | use vars qw/$VERSION $into/; | |||
| 5 | 14 | ||||||
| 5 | 722 | ||||||
| 7 | $VERSION = '0.01'; | ||||||
| 8 | |||||||
| 9 | sub import { | ||||||
| 10 | 5 | 5 | 4379 | my $self = shift; | |||
| 11 | 5 | 50 | 25 | return unless @_; | |||
| 12 | 5 | 10 | $into = shift; | ||||
| 13 | |||||||
| 14 | # slide around damians cunning - our import needs to go first | ||||||
| 15 | 5 | 2795 | require Acme::Your::Filter; | ||||
| 16 | 5 | 44 | Acme::Your::Filter->import(); | ||||
| 17 | } | ||||||
| 18 | |||||||
| 19 | 1; | ||||||
| 20 | __END__ |