File Coverage

blib/lib/Clone/AsUTF8Bytes.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 Clone::AsUTF8Bytes;
2              
3 10     10   88949 use strict;
  10         21  
  10         344  
4 10     10   50 use Carp;
  10         19  
  10         797  
5 10     10   54 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK $AUTOLOAD);
  10         23  
  10         1548  
6              
7             require Exporter;
8             require DynaLoader;
9             require AutoLoader;
10              
11             @ISA = qw(Exporter DynaLoader);
12             # Items to export into callers namespace by default. Note: do not export
13             # names by default without a very good reason. Use EXPORT_OK instead.
14             # Do not simply export all your public functions/methods/constants.
15             @EXPORT = qw();
16             @EXPORT_OK = qw( clone_as_utf8_bytes );
17              
18             $VERSION = '0.34';
19              
20             __PACKAGE__->bootstrap($VERSION);
21              
22             # Preloaded methods go here.
23              
24             # Autoload methods go after =cut, and are processed by the autosplit program.
25              
26             1;
27             __END__