/wheels/tests/_plugins/TestAssignMixins/TestAssignMixins.cfc
http://cfwheels.googlecode.com/ · ColdFusion CFScript · 30 lines · 21 code · 9 blank · 0 comment · 0 complexity · 7fe5bbbc78d34d447096461f45ef2755 MD5 · raw file
- <cfcomponent>
-
- <cffunction name="init">
- <cfset this.version = "99.9.9">
- <cfreturn this>
- </cffunction>
-
- <cffunction name="$MixinForControllers" mixin="wheelsMapping.Controller" returntype="void">
- </cffunction>
-
- <cffunction name="$MixinForModels" mixin="wheelsMapping.Model" returntype="void">
- </cffunction>
-
- <cffunction name="$MixinForModelsAndContollers" mixin="wheelsMapping.Model,wheelsMapping.Controller" returntype="void">
- </cffunction>
-
- <cffunction name="$MixinForDispatch" mixin="wheels.Dispatch" returntype="void">
- </cffunction>
-
- <cffunction name="$MixinForTest" mixin="wheelsMapping.Test" returntype="void">
- </cffunction>
-
- <cffunction name="$MixinForWheelsControllerOnly" mixin="controllers.wheels" returntype="void">
- </cffunction>
-
- <cffunction name="congratulations" mixin="controllers.Wheels">
- <cfreturn structkeyexists(core, "congratulations")>
- </cffunction>
-
- </cfcomponent>