parameterized roles now available
[catagits/CatalystX-Declare.git] / t / lib / TestApp / ControllerRole / Parameterized.pm
index 9e047db..6248da2 100644 (file)
@@ -5,7 +5,6 @@ controller_role TestApp::ControllerRole::Parameterized (Str :$message) {
     method get_message { $message }
 
     final action greet under base {
-        no warnings 'uninitialized'; # remove if TODO is fixed
         $ctx->response->body( join ':', $self->get_message, $message );
     }
 }