NativeTest.php 227 B

12345678910111213
  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