File Coverage

blib/lib/Text/Layout/Cairo.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   720 use strict;
  1         1  
  1         24  
4 1     1   4 use warnings;
  1         1  
  1         19  
5 1     1   3 use utf8;
  1         2  
  1         3  
6 1     1   14 use Carp;
  1         2  
  1         80  
7              
8             package Text::Layout::Cairo;
9              
10             sub new {
11 0     0 0   my ( $pkg, @data ) = @_;
12 0           croak("Text::Layout::Cairo: Not yet implemented");
13             }
14              
15             1;