mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
29 lines
591 B
PHP
29 lines
591 B
PHP
<?php
|
|
/**
|
|
* @package framework
|
|
* @subpackage tests
|
|
*/
|
|
|
|
class HTMLCleanerTest extends SapphireTest {
|
|
|
|
public function testHTMLClean() {
|
|
$cleaner = HTMLCleaner::inst();
|
|
|
|
if ($cleaner) {
|
|
$this->assertEquals(
|
|
$cleaner->cleanHTML('<p>wrong <b>nesting</i></p>'),
|
|
'<p>wrong <b>nesting</b></p>',
|
|
"HTML cleaned properly"
|
|
);
|
|
$this->assertEquals(
|
|
$cleaner->cleanHTML('<p>unclosed paragraph'),
|
|
'<p>unclosed paragraph</p>',
|
|
"HTML cleaned properly"
|
|
);
|
|
} else {
|
|
$this->markTestSkipped('No HTMLCleaner library available (tidy or HTMLBeautifier)');
|
|
}
|
|
}
|
|
|
|
}
|