blib/lib/MojoX/Session/Transport.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 9 | 11 | 81.8 |
branch | n/a | ||
condition | n/a | ||
subroutine | 3 | 5 | 60.0 |
pod | 2 | 2 | 100.0 |
total | 14 | 18 | 77.7 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package MojoX::Session::Transport; | ||||||
2 | |||||||
3 | 15 | 15 | 1819 | use strict; | |||
15 | 20 | ||||||
15 | 481 | ||||||
4 | 15 | 15 | 61 | use warnings; | |||
15 | 20 | ||||||
15 | 447 | ||||||
5 | |||||||
6 | 15 | 15 | 62 | use base 'Mojo::Base'; | |||
15 | 21 | ||||||
15 | 1847 | ||||||
7 | |||||||
8 | require Carp; | ||||||
9 | |||||||
10 | __PACKAGE__->attr('tx'); | ||||||
11 | |||||||
12 | 0 | 0 | 1 | sub get { Carp::croak('Method "get" not implemented by subbclass') } | |||
13 | |||||||
14 | 0 | 0 | 1 | sub set { Carp::croak('Method "set" not implemented by subbclass') } | |||
15 | |||||||
16 | 1; | ||||||
17 | __END__ |