NativeTest.php 223 B

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