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.3521';
5 165     165   1419 use strict;
  165         469  
  165         4679  
6 165     165   913 use warnings;
  165         449  
  165         3797  
7 165     165   863 use Carp;
  165         404  
  165         9097  
8              
9 165     165   1267 use base qw(Dancer::Continuation);
  165         495  
  165         28575  
10              
11              
12 111 50   111 1 414 sub return_value { $#_ ? $_[0]->{return_value} = $_[1] : $_[0]->{return_value} }
13              
14              
15             1;
16              
17             __END__