#!perl -Tw use warnings; use strict; use Test::More 'no_plan'; use URI::file (); BEGIN { delete @ENV{qw(PATH IFS CDPATH ENV BASH_ENV)}; # Placates taint-unsafe Cwd.pm in 5.6.1 use_ok( 'WWW::Mechanize' ); } my $mech = WWW::Mechanize->new( cookie_jar => undef ); isa_ok( $mech, 'WWW::Mechanize' ); my $uri = URI::file->new_abs( 't/form_with_fields.html' )->as_string; $mech->get( $uri ); ok( $mech->success, "Fetched $uri" ) or die q{Can't get test page}; { my $test = 'dies with no input'; eval{ my $form = $mech->form_with_fields(); }; ok($@,$test); } { my $form = $mech->form_with_fields(qw/1b/); isa_ok( $form, 'HTML::Form' ); is($form->attr('name'), '1st_form', 'first form matches'); } { my $form = $mech->form_with_fields('1b', 'opt[2]'); isa_ok( $form, 'HTML::Form' ); is($form->attr('name'), '2nd_form', 'second form matches'); } { $mech->get($uri); eval { $mech->submit_form( with_fields => { '1b' => '', 'opt[2]' => '' }, ); }; is($@,'', ' submit_form( with_fields => %data ) ' ); }