File Coverage

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   8666 use strict;
  15         32  
  15         498  
4 15     15   77 use warnings;
  15         33  
  15         390  
5              
6 15     15   269 use base 'Mojo::Base';
  15         30  
  15         2663  
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__