File Coverage

blib/lib/Astro/MapProjection.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 Astro::MapProjection;
2 1     1   22518 use 5.006001;
  1         4  
  1         38  
3 1     1   6 use strict;
  1         2  
  1         34  
4 1     1   6 use warnings;
  1         6  
  1         181  
5              
6             require Exporter;
7              
8             our @ISA = qw(Exporter);
9              
10             our %EXPORT_TAGS = ( 'all' => [ qw(
11             miller_projection
12             hammer_projection
13             sinusoidal_projection
14             ) ] );
15              
16             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
17              
18             our @EXPORT = qw();
19              
20             our $VERSION = '0.01';
21              
22             require XSLoader;
23             XSLoader::load('Astro::MapProjection', $VERSION);
24              
25             1;
26             __END__