config->set('AutoFormat.Custom', array(new HTMLPurifier_Injector_SafeObject()));
$this->config->set('HTML.Trusted', true);
}
function testPreserve() {
$this->assertResult(
'asdf'
);
}
function testRemoveStrayParam() {
$this->assertResult(
'',
''
);
}
function testEditObjectParam() {
$this->assertResult(
'',
''
);
}
function testIgnoreStrayParam() {
$this->assertResult(
'',
''
);
}
function testIgnoreDuplicates() {
$this->assertResult(
''
);
}
function testIgnoreBogusData() {
$this->assertResult(
'',
''
);
}
function testIgnoreInvalidData() {
$this->assertResult(
'',
''
);
}
function testKeepValidData() {
$this->assertResult(
'',
''
);
}
function testNested() {
$this->assertResult(
'',
''
);
}
function testNotActuallyNested() {
$this->assertResult(
'',
''
);
}
}
// vim: et sw=4 sts=4