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

/wheels/tests/view/text/striptags.cfc

http://cfwheels.googlecode.com/
ColdFusion CFScript | 15 lines | 12 code | 3 blank | 0 comment | 1 complexity | 8028574a2bef61e7a5524fd46c76ce6b 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 = '<h1>this</h1><p><a href="http://www.google.com" title="google">is</a></p><p>a <a href="mailto:someone@example.com" title="invalid email">test</a> to<br/><a name="anchortag">see</a> if this works or not.</p>'>
  6. </cffunction>
  7. <cffunction name="test_all_tags_should_be_stripped">
  8. <cfset loc.e = loc.controller.stripTags(argumentcollection=loc.args)>
  9. <cfset loc.r = "thisisa test tosee if this works or not.">
  10. <cfset assert("loc.e eq loc.r")>
  11. </cffunction>
  12. </cfcomponent>