You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
341B

  1. <?php
  2. class HTMLPurifier_AttrDef_TextTest extends HTMLPurifier_AttrDefHarness
  3. {
  4. public function test()
  5. {
  6. $this->def = new HTMLPurifier_AttrDef_Text();
  7. $this->assertDef('This is spiffy text!');
  8. $this->assertDef(" Casual\tCDATA parse\ncheck. ", 'Casual CDATA parse check.');
  9. }
  10. }
  11. // vim: et sw=4 sts=4