X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Ft%2Fweb%2Fconfig_tab_right.t;h=69bf80c692310f8d8e37cdaf1fb10c07a6a011a8;hb=2f83aa0920cd03724adf25b7ffb89890d43d96ce;hp=4dc9ec082601fcb627c9c04fdf02348288a95a9b;hpb=63a268637b2d51a8766412617724b9436439deb6;p=freeside.git diff --git a/rt/t/web/config_tab_right.t b/rt/t/web/config_tab_right.t index 4dc9ec082..69bf80c69 100644 --- a/rt/t/web/config_tab_right.t +++ b/rt/t/web/config_tab_right.t @@ -1,12 +1,11 @@ -#!/usr/bin/perl -w use strict; use warnings; -use RT::Test tests => 8; +use RT::Test nodata => 1, tests => 10; my ($uname, $upass, $user) = ('tester', 'tester'); { - $user = RT::User->new($RT::SystemUser); + $user = RT::User->new(RT->SystemUser); my ($status, $msg) = $user->Create( Name => $uname, Password => $upass, @@ -20,7 +19,7 @@ my ($baseurl, $m) = RT::Test->started_ok; ok $m->login($uname, $upass), "logged in"; { - $m->content_unlike(qr/Configuration/, 'no configuration'); + $m->content_lacks('Configuration', 'no configuration tab'); $m->get('/Admin/'); is $m->status, 403, 'no access to /Admin/'; } @@ -33,7 +32,7 @@ RT::Test->set_rights( { $m->get('/'); - $m->content_like(qr/Configuration/, 'configuration is there'); + $m->content_contains('Configuration', 'configuration tab is there'); $m->follow_link_ok({text => 'Configuration'}); is $m->status, 200, 'user has access to /Admin/';