aboutsummaryrefslogtreecommitdiff
path: root/t/lib/WebCoso/Step/Step2.pm
diff options
context:
space:
mode:
Diffstat (limited to 't/lib/WebCoso/Step/Step2.pm')
-rw-r--r--t/lib/WebCoso/Step/Step2.pm26
1 files changed, 0 insertions, 26 deletions
diff --git a/t/lib/WebCoso/Step/Step2.pm b/t/lib/WebCoso/Step/Step2.pm
deleted file mode 100644
index 08a32c2..0000000
--- a/t/lib/WebCoso/Step/Step2.pm
+++ /dev/null
@@ -1,26 +0,0 @@
-package WebCoso::Step::Step2;
-use base 'WebCoso::Step::Base';
-use Class::Std;
-use strict;
-use warnings;
-
-{
-my %calls_of :ATTR(:default<[]> :get<calls>);
-my %p2_of :ATTR(:init_arg<p2>);
-
-sub process {
- my ($self,$resource,$stage)=@_;
-
- my $out='stuff';
-
- push @{$calls_of{ident $self}},{
- resource => $resource,
- out_res => $out,
- stage => $stage,
- };
-
- return $out;
-}
-
-}
-1;