6248da235fa172f44a01cdfde8779e795ec587e7
[catagits/CatalystX-Declare.git] / t / lib / TestApp / ControllerRole / Parameterized.pm
1 use CatalystX::Declare;
2
3 controller_role TestApp::ControllerRole::Parameterized (Str :$message) {
4
5     method get_message { $message }
6
7     final action greet under base {
8         $ctx->response->body( join ':', $self->get_message, $message );
9     }
10 }