| blib/lib/Arriba/Request.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % | 
| statement | 9 | 9 | 100.0 | 
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 3 | 3 | 100.0 | 
| pod | 0 | 1 | 0.0 | 
| total | 12 | 13 | 92.3 | 
| line | stmt | bran | cond | sub | pod | time | code | 
|---|---|---|---|---|---|---|---|
| 1 | package Arriba::Request; | ||||||
| 2 | |||||||
| 3 | 3 | 3 | 16 | use warnings; | |||
| 3 | 27 | ||||||
| 3 | 92 | ||||||
| 4 | 3 | 3 | 14 | use strict; | |||
| 3 | 5 | ||||||
| 3 | 275 | ||||||
| 5 | |||||||
| 6 | sub new { | ||||||
| 7 | 77 | 77 | 0 | 163 | my $class = shift; | ||
| 8 | 77 | 131 | my $connection = shift; | ||||
| 9 | 77 | 645 | bless { connection => $connection, @_ }, $class; | ||||
| 10 | } | ||||||
| 11 | |||||||
| 12 | 1; | ||||||
| 13 |