X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Ft%2Fweb%2Fbasic.t;fp=rt%2Ft%2Fweb%2Fbasic.t;h=3f94e732f7997a7ad0a0530e555e300958b35d1b;hb=fc6209f398899f0211cfcedeb81a3cd65e04a941;hp=bc4d655870bbca181e7952a690df536e8d2c087a;hpb=e70abd21bab68b23488f7ef1ee2e693a3b365691;p=freeside.git diff --git a/rt/t/web/basic.t b/rt/t/web/basic.t index bc4d65587..3f94e732f 100644 --- a/rt/t/web/basic.t +++ b/rt/t/web/basic.t @@ -4,7 +4,7 @@ use strict; use warnings; use Encode; -use RT::Test tests => 24; +use RT::Test tests => 21; $RT::Test::SKIP_REQUEST_WORK_AROUND = 1; my ($baseurl, $agent) = RT::Test->started_ok; @@ -20,15 +20,8 @@ diag $url if $ENV{TEST_VERBOSE}; # test a login { - ok($agent->{form}->find_input('user')); - ok($agent->{form}->find_input('pass')); - - ok($agent->{'content'} =~ /username:/i); - $agent->field( 'user' => 'root' ); - $agent->field( 'pass' => 'password' ); - + $agent->login('root' => 'password'); # the field isn't named, so we have to click link 0 - $agent->click(0); is( $agent->{'status'}, 200, "Fetched the page ok"); ok( $agent->{'content'} =~ /Logout/i, "Found a logout link"); }