0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-03-11 17:18:44 +00:00

[1.7.0] Add missing includes for AttrTypes, add phantom unit test for future things to come

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1087 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang 2007-05-22 23:48:38 +00:00
parent 797d3e0393
commit 818d0d7a23
2 changed files with 7 additions and 0 deletions

View File

@ -1,10 +1,12 @@
<?php
require_once 'HTMLPurifier/AttrDef/Lang.php';
require_once 'HTMLPurifier/AttrDef/HTML/ID.php';
require_once 'HTMLPurifier/AttrDef/HTML/Length.php';
require_once 'HTMLPurifier/AttrDef/HTML/MultiLength.php';
require_once 'HTMLPurifier/AttrDef/HTML/Nmtokens.php';
require_once 'HTMLPurifier/AttrDef/HTML/Pixels.php';
require_once 'HTMLPurifier/AttrDef/HTML/Color.php';
require_once 'HTMLPurifier/AttrDef/Integer.php';
require_once 'HTMLPurifier/AttrDef/Text.php';
require_once 'HTMLPurifier/AttrDef/URI.php';

View File

@ -16,6 +16,11 @@ class HTMLPurifier_AttrTypesTest extends UnitTestCase
$this->expectError('Cannot retrieve undefined attribute type foobar');
$types->get('foobar');
//$this->assertIdentical(
// $types->get('Enum#foo,bar'),
// new HTMLPurifier_AttrDef_Enum(array('foo', 'bar'))
//);
}
}