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.

14 lines
227B

  1. <?php
  2. class HTMLPurifier_VarParser_NativeTest extends HTMLPurifier_VarParserHarness
  3. {
  4. public function testValidateSimple()
  5. {
  6. $this->assertValid('"foo\\\\"', 'string', 'foo\\');
  7. }
  8. }
  9. // vim: et sw=4 sts=4