--- trunk/t/95-frey-test-runner.t 2008/11/24 17:24:18 488 +++ trunk/t/95-frey-test-runner.t 2008/11/24 18:10:34 490 @@ -2,7 +2,7 @@ use strict; use warnings; -use Test::More tests => 2; +use Test::More tests => 1; use lib 'lib'; use Data::Dump qw/dump/; @@ -13,5 +13,6 @@ use_ok('Frey::Test::Runner'); } -ok( my $markup = Frey::Test::Runner->new->as_markup, 'markup' ); -diag $markup if $debug; +if ( $debug ) { + diag Frey::Test::Runner->new->as_markup; +}