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   54511 use 5.008;
  10         29  
4              
5 10     10   36 use strict;
  10         9  
  10         308  
6 10     10   39 use warnings;
  10         32  
  10         466  
7              
8 10     10   8439 use Astro::Coord::ECI;
  10         306704  
  10         420  
9 10     10   81 use Astro::Coord::ECI::Utils qw{ AU deg2rad gm_strftime rad2deg };
  10         15  
  10         560  
10 10     10   39 use Carp;
  10         12  
  10         411  
11 10     10   32 use Exporter qw{ import };
  10         11  
  10         361  
12 10     10   5737 use Test::More 0.88; # Because of done_testing();
  10         783181  
  10         58  
13              
14             our $VERSION = '0.008';
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   2907 use constant DEBUG => $ENV{VSOP87D_DEBUG};
  10         12  
  10         3581  
28             }
29              
30             sub is_au_au {
31 4     4 1 1784 my ( $got, $want, $dp, $title ) = @_;
32 4         10 my $tplt = "%.${dp}f";
33 4         38 @_ = (
34             sprintf( $tplt, $got ),
35             sprintf( $tplt, $want ),
36             $title,
37             );
38 4         14 goto &is;
39             }
40              
41             sub is_km_au {
42 2     2 1 1801 splice @_, 0, 1, $_[0] / AU;
43 2         41 goto &is_au_au;
44             }
45              
46             sub is_rad_deg {
47 9     9 1 6133 my ( $got, $want, $dp, $title ) = @_;
48 9         17 my $tplt = "%.${dp}f";
49 9         22 @_ = (
50             sprintf( $tplt, rad2deg( $got ) ),
51             sprintf( $tplt, $want ),
52             $title,
53             );
54 9         121 goto &is;
55             }
56              
57             sub strftime_h {
58 35     35 1 50342 my ( $time ) = @_;
59 35         175 return gm_strftime( '%Y-%m-%d %H', $time + 1800 );
60             }
61              
62             sub strftime_m {
63 29     29 1 35048 my ( $time ) = @_;
64 29         162 return gm_strftime( '%Y-%m-%d %H:%M', $time + 30 );
65             }
66              
67             sub washington_dc {
68 8     8 1 1254434 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__