File Coverage

blib/lib/SDL/Pango/Context.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package SDL::Pango::Context;
2 1     1   10941 use strict;
  1         3  
  1         49  
3 1     1   6 use warnings;
  1         3  
  1         40  
4 1     1   7 use vars qw(@ISA @EXPORT @EXPORT_OK);
  1         2  
  1         95  
5             require Exporter;
6             require DynaLoader;
7 1     1   7 use SDL::Constants ':SDL::Pango';
  1         3  
  1         1034  
8             our @ISA = qw(Exporter DynaLoader);
9              
10 1     1   9 use SDL::Internal::Loader;
  1         2  
  1         86  
11             internal_load_dlls(__PACKAGE__);
12              
13             bootstrap SDL::Pango::Context;
14              
15 1     1   8 use base 'Exporter';
  1         3  
  1         1335  
16             our @EXPORT = @{ $SDL::Constants::EXPORT_TAGS{'SDL::Pango'} };
17             our %EXPORT_TAGS = (
18             all => \@EXPORT,
19             direction => $SDL::Constants::EXPORT_TAGS{'SDL::Pango/direction'},
20             align => $SDL::Constants::EXPORT_TAGS{'SDL::Pango/align'}
21             );
22              
23             1;