aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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__;