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   1948 use strict;
  15         19  
  15         465  
4 15     15   71 use warnings;
  15         18  
  15         363  
5              
6 15     15   55 use base 'Mojo::Base';
  15         32  
  15         1901  
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__