File Coverage

blib/lib/Boost/Graph/Undirected.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 Boost::Graph::Undirected;
2              
3 1     1   25 use 5.008;
  1         4  
  1         47  
4 1     1   6 use strict;
  1         3  
  1         35  
5 1     1   5 use warnings;
  1         1  
  1         197  
6              
7             require Exporter;
8              
9             our @ISA = qw(Exporter);
10              
11             our %EXPORT_TAGS = ( 'all' => [ qw(
12            
13             ) ] );
14              
15             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
16              
17             our @EXPORT = qw(
18            
19             );
20              
21              
22             # Dev release version numbering ends in a _xxx suffix, and is evaled to a number.
23             # See perldoc perlmodstyle for explanation.
24             our $VERSION = '1.4_001';
25             our $XS_VERSION = $VERSION;
26             $VERSION = eval $VERSION;
27              
28              
29             require XSLoader;
30             XSLoader::load('Boost::Graph::Undirected', $XS_VERSION);
31              
32             # Preloaded methods go here.
33              
34             1;
35             __END__