File Coverage

blib/lib/SQ.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package SQ;
2              
3 1     1   22555 use strict;
  1         3  
  1         32  
4 1     1   3 use warnings;
  1         2  
  1         26  
5              
6 1     1   22 use 5.008;
  1         2  
  1         50  
7              
8             our $VERSION = '0.0.4';
9              
10              
11 1     1   3 use Exporter 5.57 'import';
  1         19  
  1         49  
12              
13 1     1   4 use vars ( qw( @EXPORT $s $q $sq) );
  1         2  
  1         110  
14              
15             @EXPORT = ( qw($s $q $sq) );
16              
17             $s = $q = $sq = q#'#;
18              
19             1;
20              
21             __END__