File Coverage

tmp/work/t/templates/quotes_psp.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1             package Text::PSP::Generated::t::templates::quotes_psp;
2 1     1   4 use strict;
  1         2  
  1         25  
3 1     1   416 use Text::PSP::Template;
  1         2  
  1         25  
4 1     1   4 use vars qw(@ISA);
  1         2  
  1         113  
5             @ISA = qw(Text::PSP::Template);
6              
7             # this file was generated by Text::PSP::Parser
8 1     1   2 sub run { my @o;
9              
10             #line 1 t/templates//quotes.psp
11             push @o,'Text with some \'quotes\' and \\backslashes\\
12             ', "Expression returning some 'quotes' and \\blackslashes\\" ,'
13             Parsetime code returning some \'quotes\' and \\blackslashes\\
14              
15             ';
16             return \@o;}
17             1