Help for this page

Select Code to Download


  1. or download this
    use WWW::Mechanize;
    use Test::More qw /no_plan/;
    ...
    );
    ok($mech->status == 400,'empty searches should have a 400 status');
    ok($mech->content =~ /no search term/i, 'and a chide about having no s
    +earch term');
    
  2. or download this
    sub chide {
        my $self = shift;
    ...
        $self->process;
        confess $chide_msg if $self->exit_on_error;
    }