mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-08 06:48:42 +00:00
Add one more test for SPL autoload defaults.
Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
This commit is contained in:
parent
94c15d1f56
commit
d45e11cc6b
@ -0,0 +1,25 @@
|
||||
--TEST--
|
||||
HTMLPurifier.auto.php using spl_autoload_register default
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if (!function_exists('spl_autoload_register')) {
|
||||
echo "skip - spl_autoload_register() not available";
|
||||
}
|
||||
--FILE--
|
||||
<?php
|
||||
spl_autoload_extensions(".php");
|
||||
spl_autoload_register();
|
||||
|
||||
require '../library/HTMLPurifier.auto.php';
|
||||
require 'HTMLPurifier/PHPT/loading/_autoload.inc';
|
||||
$config = HTMLPurifier_Config::createDefault();
|
||||
$purifier = new HTMLPurifier($config);
|
||||
echo $purifier->purify('<b>Salsa!') . "
|
||||
";
|
||||
|
||||
// purposely invoke standard autoload
|
||||
$test = new default_load();
|
||||
|
||||
--EXPECT--
|
||||
<b>Salsa!</b>
|
||||
Default loaded
|
3
tests/default_load.php
Normal file
3
tests/default_load.php
Normal file
@ -0,0 +1,3 @@
|
||||
<?php
|
||||
class default_load { }
|
||||
echo "Default loaded\n";
|
Loading…
Reference in New Issue
Block a user