aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorwreis <wreis@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2009-10-21 01:26:07 +0000
committerwreis <wreis@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2009-10-21 01:26:07 +0000
commit58db82a4efc562dacc3d4123a0583e94f8b48db3 (patch)
tree77312e5e8559e020251abbcf25e035eb56c21d47 /lib
parent66057c3c1af63001383cd73e83c5a8adc94cef97 (diff)
downloadreaction-58db82a4efc562dacc3d4123a0583e94f8b48db3.tar.gz
reaction-58db82a4efc562dacc3d4123a0583e94f8b48db3.zip
adding failing use case
Diffstat (limited to 'lib')
-rw-r--r--lib/ComponentUI/Controller/TestModel/Foo.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/ComponentUI/Controller/TestModel/Foo.pm b/lib/ComponentUI/Controller/TestModel/Foo.pm
index 04a56e8..8730432 100644
--- a/lib/ComponentUI/Controller/TestModel/Foo.pm
+++ b/lib/ComponentUI/Controller/TestModel/Foo.pm
@@ -66,6 +66,12 @@ override _build_action_viewport_args => sub {
return $args;
};
+sub object : Chained('base') PathPart('id') CaptureArgs(1) {
+ my ($self, $c, $object) = @_;
+ $self->next::method($c, $object);
+ # just as failing use case
+}
+
1;
__END__;