PageRenderTime 28ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/wheels/tests/view/text/striplinks.cfc

http://cfwheels.googlecode.com/
ColdFusion CFScript | 15 lines | 12 code | 3 blank | 0 comment | 1 complexity | 94a24330984e117bb6fe4d022ac7e6fa MD5 | raw file
Possible License(s): Apache-2.0, CPL-1.0
  1. <cfcomponent extends="wheelsMapping.Test">
  2. <cffunction name="setup">
  3. <cfset loc.controller = controller(name="dummy")>
  4. <cfset loc.args = {}>
  5. <cfset loc.args.html = 'this <a href="http://www.google.com" title="google">is</a> a <a href="mailto:someone@example.com" title="invalid email">test</a> to <a name="anchortag">see</a> if this works or not.'>
  6. </cffunction>
  7. <cffunction name="test_all_links_should_be_stripped">
  8. <cfset loc.e = loc.controller.striplinks(argumentcollection=loc.args)>
  9. <cfset loc.r = "this is a test to see if this works or not.">
  10. <cfset assert("loc.e eq loc.r")>
  11. </cffunction>
  12. </cfcomponent>