update User test now that group caches are flushed properly

This commit is contained in:
Colin Kuskie 2006-05-19 03:53:50 +00:00
parent 0732eef9ce
commit 3d10acb8ce
2 changed files with 8 additions and 12 deletions

View file

@ -18,7 +18,7 @@ use WebGUI::Storage;
use Test::More;
plan tests => 7; # increment this value for each test you create
plan tests => 8; # increment this value for each test you create
my $session = WebGUI::Test->session;
@ -46,6 +46,8 @@ ok( (-e $storageDir1 and -d $storageDir1), "Storage location created and is a di
$storage1->delete;
ok( !(-e $storageDir1), "Storage location deleted");
END {
ref $storage1 eq "WebGUI::Storage" and $storage1->delete;
}