File Coverage

blib/lib/Goo/Zone.pm
Criterion Covered Total %
statement 12 15 80.0
branch n/a
condition n/a
subroutine 4 5 80.0
pod 1 1 100.0
total 17 21 80.9


line stmt bran cond sub pod time code
1             package Goo::Zone;
2              
3             ###############################################################################
4             # Nigel Hamilton
5             #
6             # Copyright Nigel Hamilton 2005
7             # All Rights Reserved
8             #
9             # Author: Nigel Hamilton
10             # Filename: Zone.pm
11             # Description: Show the tail of the Goo trail
12             #
13             # Date Change
14             # -----------------------------------------------------------------------------
15             # 21/08/2005 Deleted method: generateProfile
16             # 21/08/2005 Deleted method: showProfile
17             # 21/08/2005 Deleted method: getGooTrailTable
18             #
19             ###############################################################################
20              
21 1     1   10462 use strict;
  1         2  
  1         39  
22              
23 1     1   7 use Goo::Object;
  1         2  
  1         20  
24 1     1   5 use Goo::Loader;
  1         3  
  1         24  
25              
26 1     1   6 use base qw(Goo::Object);
  1         3  
  1         172  
27              
28              
29             ###############################################################################
30             #
31             # run - go back!!
32             #
33             ###############################################################################
34              
35             sub run {
36              
37 0     0 1   my ($this, $thing) = @_;
38              
39             # get the previous action in the GooTrail
40             # do the action again!
41 0           my $trail = Goo::Loader::load("tail.trail");
42              
43             # do the action again!
44 0           $trail->do_action("P");
45              
46             }
47              
48             1;
49              
50              
51             __END__
52              
53             =head1 NAME
54              
55             Goo::Zone - Show the tail of the Goo trail
56              
57             =head1 SYNOPSIS
58              
59             use Goo::Zone;
60              
61             =head1 DESCRIPTION
62              
63             Action handler for viewing the trail of the Goo Trail (i.e., [Z]one).
64             It tries to answer the question, "what am I currently juggling?"
65              
66             =head1 METHODS
67              
68             =over
69              
70             =item run
71              
72             Show the tail of the Goo Trail
73              
74             =back
75              
76             =head1 AUTHOR
77              
78             Nigel Hamilton <nigel@trexy.com>
79              
80             =head1 SEE ALSO
81