File Coverage

lib/Google/Chart/Type/Simple.pm
Criterion Covered Total %
statement 6 8 75.0
branch n/a
condition n/a
subroutine 2 4 50.0
pod 2 2 100.0
total 10 14 71.4


line stmt bran cond sub pod time code
1             # $Id$
2              
3             package Google::Chart::Type::Simple;
4 1     1   2136 use Moose::Role;
  1         7058  
  1         9  
5              
6             with 'Google::Chart::QueryComponent::Simple';
7             with 'Google::Chart::Type';
8              
9 1     1   7301 no Moose;
  1         4  
  1         8  
10              
11 0     0 1   sub parameter_name { 'cht' }
12 0     0 1   sub parameter_value { '' }
13              
14             1;
15              
16             __END__
17              
18             =head1 NAME
19              
20             Google::Chart::Type::Simple - Role For Simple Types
21              
22             =head1 METHODS
23              
24             =head2 parameter_name
25              
26             Returns 'cht'
27              
28             =head2 parameter_value
29              
30             You should return the appropriate encoded value
31              
32             =cut