File Coverage

blib/lib/XS/Object/Magic.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 15 15 100.0


line stmt bran cond sub pod time code
1             package XS::Object::Magic;
2              
3 1     1   27421 use strict;
  1         2  
  1         27  
4 1     1   4 use warnings;
  1         2  
  1         27  
5              
6             require 5.008001;
7 1     1   737 use parent qw(DynaLoader);
  1         357  
  1         7  
8              
9             our $VERSION = '0.04';
10             $VERSION = eval $VERSION;
11              
12 1     1 1 364 sub dl_load_flags { 0x01 }
13              
14             __PACKAGE__->bootstrap($VERSION);
15              
16             __PACKAGE__
17              
18             __END__