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 10     10   53 use strict;
  10         18  
  10         276  
4 10     10   50 use warnings;
  10         22  
  10         648  
5              
6             our $VERSION = '0.03';
7              
8             require XSLoader;
9             XSLoader::load( 'Net::Dropbear', $VERSION );
10              
11 10     10   52 use parent qw/Exporter/;
  10         17  
  10         81  
12             our @export = qw/HOOK_COMPLETE HOOK_CONTINUE HOOK_FAILURE/;
13              
14             # Preloaded methods go here.
15              
16             1;
17             __END__