File Coverage

blib/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 9     9   218355 use strict;
  9         23  
  9         264  
4 9     9   44 use warnings;
  9         17  
  9         219  
5 9     9   199 use 5.008004;
  9         60  
6 9     9   459 use parent qw( FFI::Build::File::Base );
  9         324  
  9         57  
7 9     9   490 use constant default_encoding => ':raw';
  9         19  
  9         1011  
8              
9             # ABSTRACT: Class to track object file in FFI::Build
10             our $VERSION = '2.06_01'; # TRIAL VERSION
11              
12              
13             sub default_suffix
14             {
15 1     1 1 8 shift->platform->library_suffix;
16             }
17              
18             1;
19              
20             __END__