first round at fixing tests to work with new session system

This commit is contained in:
JT Smith 2006-01-12 22:49:38 +00:00
parent a3adaee3a0
commit 20a4aebb13
15 changed files with 160 additions and 161 deletions

View file

@ -1,5 +1,5 @@
#-------------------------------------------------------------------
# WebGUI is Copyright 2001-2005 Plain Black Corporation.
# WebGUI is Copyright 2001-2006 Plain Black Corporation.
#-------------------------------------------------------------------
# Please read the legal notices (docs/legal.txt) and the license
# (docs/license.txt) that came with this distribution before using
@ -12,17 +12,16 @@
use strict;
use lib '../lib';
use Getopt::Long;
use WebGUI::Session;
# ---- END DO NOT EDIT ----
use Test::More tests => 1; # increment this value for each test you create
initialize(); # this line is required
my $session = initialize(); # this line is required
# put your tests here
cleanup(); # this line is required
cleanup($session); # this line is required
# ---- DO NOT EDIT BELOW THIS LINE -----
@ -34,10 +33,11 @@ sub initialize {
'configFile=s'=>\$configFile
);
exit 1 unless ($configFile);
WebGUI::Session::open("..",$configFile);
my $session = WebGUI::Session->open("..",$configFile);
}
sub cleanup {
WebGUI::Session::close();
my $session = shift;
$session->close();
}