--- trunk/t/30-Frey-SVN.t 2008/12/17 18:38:49 874 +++ trunk/t/30-Frey-SVN.t 2008/12/17 19:40:31 875 @@ -4,19 +4,21 @@ my $debug = @ARGV ? 1 : 0; -use Test::More tests => 5; +use Test::More tests => 7; use lib 'lib'; use Data::Dump qw/dump/; BEGIN { use_ok('Frey::SVN'); + use_ok('Test::HTML::Lint'); } ok( my $o = Frey::SVN->new( request_url => '/', debug => $debug ), 'new' ); ok( my $markup = $o->as_markup, 'as_markup' ); diag $markup if $debug; like( $markup, qr/blockquote/, 'markup content' ); +html_ok( $markup ); ok( my $codeswarm = $o->codeswarm_as_markup, 'codeswarm_as_markup' ); diag $codeswarm if $debug;