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   74757 use 5.008;
  10         39  
4              
5 10     10   54 use strict;
  10         18  
  10         371  
6 10     10   68 use warnings;
  10         35  
  10         717  
7              
8 10     10   12161 use Astro::Coord::ECI;
  10         455803  
  10         589  
9 10     10   115 use Astro::Coord::ECI::Utils qw{ AU deg2rad gm_strftime rad2deg };
  10         26  
  10         942  
10 10     10   89 use Carp;
  10         20  
  10         676  
11 10     10   58 use Exporter qw{ import };
  10         19  
  10         549  
12 10     10   8116 use Test::More 0.88; # Because of done_testing();
  10         1195781  
  10         120  
13              
14             our $VERSION = '0.007';
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   4502 use constant DEBUG => $ENV{VSOP87D_DEBUG};
  10         19  
  10         5489  
28             }
29              
30             sub is_au_au {
31 4     4 1 2742 my ( $got, $want, $dp, $title ) = @_;
32 4         12 my $tplt = "%.${dp}f";
33 4         43 @_ = (
34             sprintf( $tplt, $got ),
35             sprintf( $tplt, $want ),
36             $title,
37             );
38 4         18 goto &is;
39             }
40              
41             sub is_km_au {
42 2     2 1 2462 splice @_, 0, 1, $_[0] / AU;
43 2         10 goto &is_au_au;
44             }
45              
46             sub is_rad_deg {
47 9     9 1 8937 my ( $got, $want, $dp, $title ) = @_;
48 9         24 my $tplt = "%.${dp}f";
49 9         37 @_ = (
50             sprintf( $tplt, rad2deg( $got ) ),
51             sprintf( $tplt, $want ),
52             $title,
53             );
54 9         180 goto &is;
55             }
56              
57             sub strftime_h {
58 35     35 1 63663 my ( $time ) = @_;
59 35         218 return gm_strftime( '%Y-%m-%d %H', $time + 1800 );
60             }
61              
62             sub strftime_m {
63 29     29 1 40570 my ( $time ) = @_;
64 29         186 return gm_strftime( '%Y-%m-%d %H:%M', $time + 30 );
65             }
66              
67             sub washington_dc {
68 8     8 1 2274440 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__