update v1.0.7.9 R.C.
This is a Release Candidate. We are still testing.
This commit is contained in:
@@ -1,22 +0,0 @@
|
||||
<?php
|
||||
|
||||
class HTMLPurifier_DefinitionTest extends HTMLPurifier_Harness
|
||||
{
|
||||
public function test_setup()
|
||||
{
|
||||
$def = new HTMLPurifier_DefinitionTestable();
|
||||
$config = HTMLPurifier_Config::createDefault();
|
||||
$def->expectOnce('doSetup', array($config));
|
||||
$def->setup($config);
|
||||
}
|
||||
public function test_setup_redundant()
|
||||
{
|
||||
$def = new HTMLPurifier_DefinitionTestable();
|
||||
$config = HTMLPurifier_Config::createDefault();
|
||||
$def->expectNever('doSetup');
|
||||
$def->setup = true;
|
||||
$def->setup($config);
|
||||
}
|
||||
}
|
||||
|
||||
// vim: et sw=4 sts=4
|
Reference in New Issue
Block a user