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.

11 lines
302B

  1. --TEST--
  2. HTMLPurifier.auto.php loading test
  3. --FILE--
  4. <?php
  5. require '../library/HTMLPurifier.auto.php';
  6. require 'HTMLPurifier/PHPT/loading/_autoload.inc';
  7. $config = HTMLPurifier_Config::createDefault();
  8. $purifier = new HTMLPurifier($config);
  9. echo $purifier->purify('<b>Salsa!');
  10. --EXPECT--
  11. <b>Salsa!</b>