/wheels/tests/model/_query/maxrows.cfc

http://cfwheels.googlecode.com/ · ColdFusion CFScript · 12 lines · 9 code · 3 blank · 0 comment · 0 complexity · e661083359fcb1a4a20b4b4e845c7cb0 MD5 · raw file

  1. <cfcomponent extends="wheelsMapping.Test">
  2. <cffunction name="setup">
  3. <cfset loc.profileModel = model("profile")>
  4. </cffunction>
  5. <cffunction name="test_set_max_rows">
  6. <cfset loc.profileModel.maxRows(10)>
  7. <cfset assert('loc.profileModel.toQuery().maxRows eq 10')>
  8. </cffunction>
  9. </cfcomponent>