the default URL is /, not the empty string

This commit is contained in:
Doug Bell 2011-05-05 19:31:59 -05:00
parent 36923dc335
commit 61eff5be0c

View file

@ -146,7 +146,7 @@ WebGUI::Test->interceptLogging(sub {
func => 'dies',
} );
is( $td->dispatch, "www_view", "if a query method dies, view is returned instead" );
is $log_data->{warn}, "Couldn't call method www_dies on asset for url: Root cause: ...aside from that bullet\n", '.. and logged a warn';
is $log_data->{warn}, "Couldn't call method www_dies on asset for url: / Root cause: ...aside from that bullet\n", '.. and logged a warn';
});
#vim:ft=perl