aboutsummaryrefslogtreecommitdiff
path: root/t/lib/WebCoso/Pipeline/Test.pm
diff options
context:
space:
mode:
authordakkar <dakkar@luxion>2006-12-17 12:08:23 +0000
committerdakkar <dakkar@luxion>2006-12-17 12:08:23 +0000
commitfce73c4f1cb1c3ebed4551e43108f3506bb66f51 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /t/lib/WebCoso/Pipeline/Test.pm
parent r1350@narval: dakkar | 2006-02-21 13:05:07 +0100 (diff)
downloadWebCoso-fce73c4f1cb1c3ebed4551e43108f3506bb66f51.tar.gz
WebCoso-fce73c4f1cb1c3ebed4551e43108f3506bb66f51.tar.bz2
WebCoso-fce73c4f1cb1c3ebed4551e43108f3506bb66f51.zip
pulizia: si ricomincia (di nuovo...)
git-svn-id: svn://luxion/repos/WebCoso/trunk@234 fcb26f47-9200-0410-b104-b98ab5b095f3
Diffstat (limited to 't/lib/WebCoso/Pipeline/Test.pm')
-rw-r--r--t/lib/WebCoso/Pipeline/Test.pm29
1 files changed, 0 insertions, 29 deletions
diff --git a/t/lib/WebCoso/Pipeline/Test.pm b/t/lib/WebCoso/Pipeline/Test.pm
deleted file mode 100644
index 8c339ff..0000000
--- a/t/lib/WebCoso/Pipeline/Test.pm
+++ /dev/null
@@ -1,29 +0,0 @@
-package WebCoso::Pipeline::Test;
-use strict;
-use warnings;
-use base 'WebCoso::Pipeline::Base';
-
-__PACKAGE__->set_steps(
- Step1 => {p1 => 1},
- Step2 => {p2 => 2}
-);
-
-my @calls;
-
-sub process {
- my ($class,$resource,$stage)=@_;
-
- my $call={ resource => $resource, stage => $stage };
-
- my $ret=$class->SUPER::process($resource,$stage);
-
- push @calls, $call;
-
- return $ret;
-}
-
-sub get_calls {
- return @calls;
-}
-
-1;