File Coverage

blib/lib/Net/Dropbear/XS.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Net::Dropbear::XS;
2              
3 11     11   55 use strict;
  11         23  
  11         290  
4 11     11   57 use warnings;
  11         19  
  11         752  
5              
6             our $VERSION = '0.06';
7              
8             require XSLoader;
9             XSLoader::load( 'Net::Dropbear', $VERSION );
10              
11 11     11   57 use parent qw/Exporter/;
  11         20  
  11         87  
12             our @export = qw/HOOK_COMPLETE HOOK_CONTINUE HOOK_FAILURE/;
13              
14             # Preloaded methods go here.
15              
16             1;
17             __END__