--- trunk/lib/Frey/Test/Runner.pm 2008/11/26 22:29:13 549 +++ trunk/lib/Frey/Test/Runner.pm 2008/11/28 16:45:35 593 @@ -19,7 +19,6 @@ required => 1, lazy => 1, # FIXME ask users which tests to run default => sub { -# [ glob('t/*.t') ] # all tests [ Frey::SVK->modified ] }, documentation => 'run tests which are result of modifications or whole full tests', @@ -106,8 +105,9 @@ if ( ! @tests ) { warn "can't find any tests ", dump( $self->tests ), " within depends ", dump( $self->test_because ); - warn "running all tests instead"; - @tests = glob('t/*.t'); +# warn "running all tests instead"; +# @tests = glob('t/*.t'); + @tests = ( qw{t/00-load.t t/pod.t} ); # XXX default tests } $self->title( join(' ', @tests ) ); @@ -163,6 +163,8 @@ } @tests ) . qq|| ; + } else { + warn "# test_because empty"; } $self->add_icon( $1 ) if $html =~ m{class="(passed|failed)"};