Fix newline issues in tests.
[htmlpurifier/darkodev.git] / tests / HTMLPurifier / PHPT / loading / auto-without-spl-with-autoload.phpt
blob8ac1863052cdad0122808699e6b75c7dac38db16
1 --TEST--
2 HTMLPurifier.auto.php without spl_autoload_register but with userland
3 __autoload() defined test
4 --SKIPIF--
5 <?php
6 if (function_exists('spl_autoload_register')) {
7     echo "skip - spl_autoload_register() available";
9 --FILE--
10 <?php
11 function __autoload($class) {
12     echo "Autoloading $class...
14     eval("class $class {}");
16 require '../library/HTMLPurifier.auto.php';
17 require 'HTMLPurifier/PHPT/loading/_no-autoload.inc';
18 $purifier = new HTMLPurifier();
20 --EXPECT--
21 Autoloading HTMLPurifier...