You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
574 B
20 lines
574 B
<?php
|
|
|
|
class HTMLPurifier_DefinitionTest extends HTMLPurifier_Harness
|
|
{
|
|
function test_setup() {
|
|
$def = new HTMLPurifier_DefinitionTestable();
|
|
$config = HTMLPurifier_Config::createDefault();
|
|
$def->expectOnce('doSetup', array($config));
|
|
$def->setup($config);
|
|
}
|
|
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
|
|
|