File Coverage

blib/lib/Text/Layout/Pango.pm
Criterion Covered Total %
statement 12 14 85.7
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 1 0.0
total 16 20 80.0


line stmt bran cond sub pod time code
1             #! perl
2              
3 1     1   1044 use strict;
  1         4  
  1         31  
4 1     1   5 use warnings;
  1         2  
  1         24  
5 1     1   5 use utf8;
  1         2  
  1         5  
6 1     1   32 use Carp;
  1         3  
  1         112  
7              
8             package Text::Layout::Pango;
9              
10             sub new {
11 0     0 0   my ( $pkg, @data ) = @_;
12 0           croak("Text::Layout::Pango: Not yet implemented");
13             }
14              
15             1;