File Coverage

inc/My/Module/Test.pm
Criterion Covered Total %
statement 41 41 100.0
branch n/a
condition n/a
subroutine 15 15 100.0
pod 6 6 100.0
total 62 62 100.0


line stmt bran cond sub pod time code
1             package My::Module::Test;
2              
3 10     10   55690 use 5.008;
  10         31  
4              
5 10     10   40 use strict;
  10         11  
  10         326  
6 10     10   47 use warnings;
  10         25  
  10         451  
7              
8 10     10   8711 use Astro::Coord::ECI;
  10         331530  
  10         455  
9 10     10   104 use Astro::Coord::ECI::Utils qw{ AU deg2rad gm_strftime rad2deg };
  10         35  
  10         686  
10 10     10   47 use Carp;
  10         14  
  10         502  
11 10     10   44 use Exporter qw{ import };
  10         12  
  10         398  
12 10     10   6515 use Test::More 0.88; # Because of done_testing();
  10         813059  
  10         67  
13              
14             our $VERSION = '0.007_01';
15              
16             our @EXPORT = qw{
17             is_au_au
18             is_km_au
19             is_rad_deg
20             strftime_h
21             strftime_m
22             washington_dc
23             };
24              
25             {
26             package Astro::Coord::ECI::VSOP87D;
27 10     10   3053 use constant DEBUG => $ENV{VSOP87D_DEBUG};
  10         12  
  10         3578  
28             }
29              
30             sub is_au_au {
31 4     4 1 1756 my ( $got, $want, $dp, $title ) = @_;
32 4         9 my $tplt = "%.${dp}f";
33 4         75 @_ = (
34             sprintf( $tplt, $got ),
35             sprintf( $tplt, $want ),
36             $title,
37             );
38 4         17 goto &is;
39             }
40              
41             sub is_km_au {
42 2     2 1 2013 splice @_, 0, 1, $_[0] / AU;
43 2         71 goto &is_au_au;
44             }
45              
46             sub is_rad_deg {
47 9     9 1 6250 my ( $got, $want, $dp, $title ) = @_;
48 9         18 my $tplt = "%.${dp}f";
49 9         26 @_ = (
50             sprintf( $tplt, rad2deg( $got ) ),
51             sprintf( $tplt, $want ),
52             $title,
53             );
54 9         199 goto &is;
55             }
56              
57             sub strftime_h {
58 35     35 1 48357 my ( $time ) = @_;
59 35         162 return gm_strftime( '%Y-%m-%d %H', $time + 1800 );
60             }
61              
62             sub strftime_m {
63 29     29 1 32581 my ( $time ) = @_;
64 29         147 return gm_strftime( '%Y-%m-%d %H:%M', $time + 30 );
65             }
66              
67             sub washington_dc {
68 8     8 1 1211738 return Astro::Coord::ECI->new(
69             )->geodetic(
70             deg2rad( 38.89 ),
71             deg2rad( -77.03 ),
72             0,
73             );
74             }
75              
76             1;
77              
78             __END__