File Coverage

blib/lib/Text/Diff/Config.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 13 13 100.0


line stmt bran cond sub pod time code
1             package Text::Diff::Config;
2              
3 2     2   26 use 5.006;
  2         4  
4 2     2   6 use strict;
  2         2  
  2         37  
5 2     2   6 use warnings;
  2         2  
  2         98  
6              
7             our $VERSION = '1.43';
8             our $Output_Unicode;
9              
10             BEGIN
11             {
12 2     2   33 $Output_Unicode = $ENV{'DIFF_OUTPUT_UNICODE'};
13             }
14              
15             1;
16              
17             __END__