Captures -> CapureArgs
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Chained / Auto.pm
index d8e42df..00c908f 100644 (file)
@@ -12,18 +12,18 @@ sub auto    : Private { 1 }
 #
 #   Simple chains with auto actions returning 1 and 0
 #
-sub foo     : Chained PathPart('chained/autochain1') Captures(1) { }
-sub bar     : Chained PathPart('chained/autochain2') Captures(1) { }
+sub foo     : Chained PathPart('chained/autochain1') CaptureArgs(1) { }
+sub bar     : Chained PathPart('chained/autochain2') CaptureArgs(1) { }
 
 #
 #   Detaching out of an auto action.
 #
-sub dt1     : Chained PathPart('chained/auto_detach') Captures(1) { }
+sub dt1     : Chained PathPart('chained/auto_detach') CaptureArgs(1) { }
 
 #
 #   Forwarding out of an auto action.
 #
-sub fw1     : Chained PathPart('chained/auto_forward') Captures(1) { }
+sub fw1     : Chained PathPart('chained/auto_forward') CaptureArgs(1) { }
 
 #
 #   Target for dispatch and forward tests.