File Coverage

blib/lib/Minima/View.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1 8     8   213890 use v5.40;
  8         25  
2 8     8   421 use experimental 'class';
  8         2937  
  8         65  
3              
4             class Minima::View;
5              
6 8     8   1532 use Carp;
  8         28  
  8         1676  
7              
8             method render
9             {
10             carp "Base view render called.";
11             "hello, world\n";
12             }
13              
14             method prepare_response ($response)
15             {
16             carp "Base view prepare_response` called.";
17             undef;
18             }
19              
20             __END__