php-src/ext/tidy/tests/016.phpt
Michael Orlitzky a467a42dd1 ext/tidy: update the configuration file test to not inspect output.
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.
2016-07-11 14:05:43 +02:00

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