File Coverage

blib/lib/Mason/t/Sanity.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Mason::t::Sanity;
2             $Mason::t::Sanity::VERSION = '2.22';
3 1     1   1904 use Test::Class::Most parent => 'Mason::Test::Class';
  1         68084  
  1         7  
4              
5             sub test_ok : Tests {
6             my $self = shift;
7             $self->test_comp( src => '2 + 2 = <% 2 + 2 %>', expect => '2 + 2 = 4' );
8             }
9              
10             1;