File Coverage

blib/lib/Text/VisualWidth.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Text::VisualWidth;
2              
3 3     3   54203 use 5.006;
  3         12  
  3         126  
4 3     3   17 use strict;
  3         5  
  3         92  
5 3     3   32 use warnings;
  3         5  
  3         97  
6              
7 3     3   3330 use AutoLoader qw(AUTOLOAD);
  3         5336  
  3         18  
8             our $VERSION = '0.02';
9              
10             require XSLoader;
11             XSLoader::load('Text::VisualWidth', $VERSION);
12              
13             1;
14             __END__