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.
|
- <?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
|