better docs for params and complex string test
[catagits/CatalystX-Declare.git] / t / lib / TestApp / ControllerRole / Parameterized.pm
index 10ffc62..d4e4b11 100644 (file)
@@ -21,5 +21,9 @@ controller_role TestApp::ControllerRole::Parameterized (Str :$message, Str :$bas
         final action scoped {
             $ctx->response->body( "scoped under $base" );
         }
+
+        final action complex as "$part/deep" {
+            $ctx->response->body( "$part/deep under $base" );
+        }
     }
 }