--- trunk/t/03-frey-iconbrowser.t 2008/11/27 15:45:00 553 +++ branches/no-pager/t/03-frey-iconbrowser.t 2008/12/03 21:12:43 702 @@ -36,9 +36,13 @@ diag dump( @icons ) if $debug; -ok( my ($path,$styles) = $o->combine_image( @icons ), 'combine_image' ); +ok( my ($path,$styles) = $o->combine_images( @icons ), 'combine_images' ); diag $path, dump( $styles ) if $debug; ok( my $markup = $o->as_markup, 'as_markup' ); -diag $markup if $debug; + +my $html_path = 'var/t/' . ref($o) . '.html'; +$markup =~ s{/var/}{../}sg; +$o->store( $html_path, $markup ); +diag "created $html_path ", -s $html_path;