From 818d0d7a23f8ff0e896c283b0de80f25df140a7d Mon Sep 17 00:00:00 2001 From: "Edward Z. Yang" Date: Tue, 22 May 2007 23:48:38 +0000 Subject: [PATCH] [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 --- library/HTMLPurifier/AttrTypes.php | 2 ++ tests/HTMLPurifier/AttrTypesTest.php | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/library/HTMLPurifier/AttrTypes.php b/library/HTMLPurifier/AttrTypes.php index df0c179c..091ae2c9 100644 --- a/library/HTMLPurifier/AttrTypes.php +++ b/library/HTMLPurifier/AttrTypes.php @@ -1,10 +1,12 @@ expectError('Cannot retrieve undefined attribute type foobar'); $types->get('foobar'); + //$this->assertIdentical( + // $types->get('Enum#foo,bar'), + // new HTMLPurifier_AttrDef_Enum(array('foo', 'bar')) + //); + } }