--- trunk/t/11-frey-html.t 2008/08/15 23:49:11 171 +++ trunk/t/11-frey-html.t 2008/12/03 22:24:18 709 @@ -14,8 +14,8 @@ } ok( my $o = Frey::HTML->new( html => '

demo

'), 'new' ); -is( $o->xhtml, '

demo

', 'xhtml' ); +is( $o->cleanup_as_markup, '

demo

', 'cleanup_as_markup' ); ok( $o = Frey::HTML->new( html => '

demo

'), 'new garbage' ); -is( $o->xhtml, '

demo

', 'xhtml removed attributes' ); +is( $o->cleanup_as_markup, '

demo

', 'cleanup_as_markup removed attributes' );