File Coverage

lib/Google/Chart/Type/Radar.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             # $Id$
2              
3             package Google::Chart::Type::Radar;
4 1     1   5 use Moose;
  1         2  
  1         9  
5 1     1   7292 use constant parameter_value => 'r';
  1         3  
  1         85  
6              
7             with 'Google::Chart::Type::Simple';
8              
9             __PACKAGE__->meta->make_immutable;
10              
11 1     1   6 no Moose;
  1         2  
  1         9  
12              
13             1;
14              
15             __END__
16              
17             =head1 NAME
18              
19             Google::Chart::Type::Radar - Google::Chart Radar Type
20              
21             =cut
22