Changeset 1743
- Timestamp:
- 08/29/08 01:35:06 (4 months ago)
- Files:
-
- coldbox/trunk/system/testcontroller.cfc (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
coldbox/trunk/system/testcontroller.cfc
r1533 r1743 20 20 <cfargument name="addToken" hint="Wether to add the tokens or not. Default is false" type="boolean" required="false" default="false" > 21 21 <cfargument name="persist" hint="What request collection keys to persist in the relocation" required="false" type="string" default=""> 22 <cfargument name="varStruct" required="false" type="struct" hint="A structure key-value pairs to persist."> 22 23 <!--- ************************************************************* ---> 23 24 <!--- Nothing In here to validate Unit Tests ---> … … 29 30 <!--- Save also the persist collection keys ---> 30 31 <cfset getRequestService().getContext().setValue("persistKeys","#arguments.persist#")> 32 <!--- Save also the persist collection keys ---> 33 <cfset getRequestService().getContext().setValue("persistVarStruct","#arguments.varStruct#")> 31 34 </cffunction> 32 35 … … 36 39 <cfargument name="route" hint="The route to relocate to, do not prepend the baseURL or /." type="string" required="yes" > 37 40 <cfargument name="persist" hint="What request collection keys to persist in the relocation" required="false" type="string" default=""> 41 <cfargument name="varStruct" required="false" type="struct" hint="A structure key-value pairs to persist."> 38 42 <!--- ************************************************************* ---> 39 43 <!--- Save the route ---> … … 42 46 <!--- Save also the persist collection keys ---> 43 47 <cfset getRequestService().getContext().setValue("persistKeys","#arguments.persist#")> 48 <!--- Save also the persist collection keys ---> 49 <cfset getRequestService().getContext().setValue("persistVarStruct","#arguments.varStruct#")> 44 50 </cffunction> 45 51
