| blib/lib/Pinwheel/View/Wrap.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 Pinwheel::View::Wrap; | ||||||
| 2 | |||||||
| 3 | 8 | 8 | 53 | use strict; | |||
| 8 | 17 | ||||||
| 8 | 336 | ||||||
| 4 | 8 | 8 | 46 | use warnings; | |||
| 8 | 13 | ||||||
| 8 | 315 | ||||||
| 5 | |||||||
| 6 | 8 | 8 | 5006 | use Pinwheel::View::Wrap::Array; | |||
| 8 | 19 | ||||||
| 8 | 241 | ||||||
| 7 | 8 | 8 | 5088 | use Pinwheel::View::Wrap::Scalar; | |||
| 8 | 22 | ||||||
| 8 | 548 | ||||||
| 8 | |||||||
| 9 | our $array = bless({}, 'Pinwheel::View::Wrap::Array'); | ||||||
| 10 | our $scalar = bless({}, 'Pinwheel::View::Wrap::Scalar'); | ||||||
| 11 | |||||||
| 12 | |||||||
| 13 | 1; |