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   146249 use v5.40;
  8         29  
2 8     8   399 use experimental 'class';
  8         3143  
  8         49  
3              
4             class Minima::View;
5              
6 8     8   1619 use Carp;
  8         25  
  8         1759  
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__