lib/Google/Chart/Fill.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::Fill; | ||||||
4 | 1 | 1 | 7 | use Moose::Role; | |||
1 | 2 | ||||||
1 | 13 | ||||||
5 | |||||||
6 | 1 | 1 | 3945 | use constant parameter_name => 'chf'; | |||
1 | 3 | ||||||
1 | 103 | ||||||
7 | |||||||
8 | with 'Google::Chart::QueryComponent::Simple'; | ||||||
9 | |||||||
10 | 1 | 1 | 7 | no Moose; | |||
1 | 2 | ||||||
1 | 9 | ||||||
11 | |||||||
12 | 1; | ||||||
13 | |||||||
14 | __END__ | ||||||
15 | |||||||
16 | =head1 NAME | ||||||
17 | |||||||
18 | Google::Chart::Fill - Base Fill Role | ||||||
19 | |||||||
20 | =head1 SYNOPSIS | ||||||
21 | |||||||
22 | package NewFillType; | ||||||
23 | use Moose; | ||||||
24 | |||||||
25 | with 'Google::Chart::Fill'; | ||||||
26 | |||||||
27 | no Moose; | ||||||
28 | |||||||
29 | sub parameter_value { ... } | ||||||
30 | |||||||
31 | =cut |