mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00

One of the tests for tidy (016.phpt) is testing that we can use a configuration file (016.tcfg) instead of a string to configure tidy. It was observing the output of an API call, which proved too fragile now that we support tidy-html5 as well. Instead, the test was updated to inspect $tidy->getConfig() to ensure that the config file was actually processed and will be respected.
13 lines
378 B
PHP
13 lines
378 B
PHP
--TEST--
|
|
Passing configuration file through tidy_parse_file() (may fail with buggy libtidy)
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("tidy")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
$tidy = tidy_parse_file(dirname(__FILE__)."/016.html",
|
|
dirname(__FILE__)."/016.tcfg");
|
|
$cfg = $tidy->getConfig();
|
|
echo $cfg["clean"];
|
|
?>
|
|
--EXPECT--
|
|
1
|