File Coverage

blib/lib/Dancer/Continuation/Route.pm
Criterion Covered Total %
statement 13 13 100.0
branch 1 2 50.0
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 20 21 95.2


line stmt bran cond sub pod time code
1             package Dancer::Continuation::Route;
2             our $AUTHORITY = 'cpan:SUKRIA';
3             # ABSTRACT: Internal exception class for Route exceptions in Dancer.
4             $Dancer::Continuation::Route::VERSION = '1.3520';
5 165     165   1431 use strict;
  165         414  
  165         4934  
6 165     165   1003 use warnings;
  165         440  
  165         3841  
7 165     165   923 use Carp;
  165         446  
  165         9174  
8              
9 165     165   1129 use base qw(Dancer::Continuation);
  165         517  
  165         28536  
10              
11              
12 111 50   111 1 413 sub return_value { $#_ ? $_[0]->{return_value} = $_[1] : $_[0]->{return_value} }
13              
14              
15             1;
16              
17             __END__