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 6     6   66121 use strict;
  6         21  
  6         167  
4 6     6   27 use warnings;
  6         24  
  6         130  
5 6     6   95 use 5.008001;
  6         19  
6 6     6   34 use base qw( FFI::Build::File::Base );
  6         10  
  6         2044  
7 6     6   43 use constant default_encoding => ':raw';
  6         19  
  6         608  
8              
9             # ABSTRACT: Class to track object file in FFI::Build
10             our $VERSION = '0.12'; # VERSION
11              
12              
13             sub default_suffix
14             {
15 1     1 1 8 shift->platform->library_suffix;
16             }
17              
18             1;
19              
20             __END__