Fix newline issues in tests.
[htmlpurifier/darkodev.git] / tests / HTMLPurifier / PHPT / loading / _no-autoload.inc
blob24bce6f55e35e6fb8bc7e557dc06e21c6f28df91
1 <?php
3 /**
4  * Tests if autoloading is off in HTML Purifier. If all tests pass, no output.
5  */
7 if (function_exists('spl_autoload_register')) {
8     $__v = spl_autoload_functions();
9     assert('$__v == false || !in_array(array("HTMLPurifier_Bootstrap", "autoload"), $__v)');
10 } else {
11     if (function_exists('__autoload')) {
12         $__r = new ReflectionFunction('__autoload');
13         assert('$__r->getFileName() != realpath("../library/HTMLPurifier.autoload.php")');
14     }