File Coverage

lib/FFI/Build/File/Library.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 1 1 100.0
total 22 22 100.0


line stmt bran cond sub pod time code
1             package FFI::Build::File::Library;
2              
3 11     11   240028 use strict;
  11         45  
  11         478  
4 11     11   62 use warnings;
  11         34  
  11         698  
5 11     11   211 use 5.008004;
  11         90  
6 11     11   767 use parent qw( FFI::Build::File::Base );
  11         463  
  11         67  
7 11     11   711 use constant default_encoding => ':raw';
  11         32  
  11         1407  
8              
9             # ABSTRACT: Class to track object file in FFI::Build
10             our $VERSION = '2.11'; # VERSION
11              
12              
13             sub default_suffix
14             {
15 1     1 1 10 shift->platform->library_suffix;
16             }
17              
18             1;
19              
20             __END__