Another batch of clean-ups for users and groups.

This commit is contained in:
Colin Kuskie 2009-05-01 02:48:18 +00:00
parent c60237443c
commit 39607fc208
6 changed files with 16 additions and 30 deletions

View file

@ -60,6 +60,8 @@ my $otherUser = WebGUI::User->new($session, 'new');
my $groupIdEditUser = WebGUI::User->new($session, 'new');
my $groupToEditPost = WebGUI::Group->new($session, $collab->get('groupToEditPost'));
my $groupIdEditGroup = WebGUI::Group->new($session, $collab->get('groupIdEdit'));
WebGUI::Test->usersToDelete($postingUser, $otherUser, $groupIdEditUser);
WebGUI::Test->groupsToDelete($groupToEditPost, $groupIdEditGroup);
$postingUser->username('userForPosting');
$otherUser->username('otherUser');
@ -117,9 +119,6 @@ TODO: {
END {
# Clean up after thyself
$versionTag->rollback();
$postingUser->delete();
$otherUser->delete();
$groupIdEditUser->delete();
}