ported t/A-M to use WebGUI::Test

This commit is contained in:
Christian Hansen 2006-01-17 21:22:11 +00:00
parent 3f6176397b
commit 831f5a36e1
14 changed files with 67 additions and 315 deletions

View file

@ -8,13 +8,13 @@
# http://www.plainblack.com info@plainblack.com
#-------------------------------------------------------------------
# ---- BEGIN DO NOT EDIT ----
use FindBin;
use strict;
use lib '../../lib';
use Getopt::Long;
use lib "$FindBin::Bin/../lib";
use WebGUI::Test;
use WebGUI::Session;
use WebGUI::Operation::Help;
# ---- END DO NOT EDIT ----
#The goal of this test is to verify that all entries in the lib/WebGUI/Help
#directory compile. This test is necessary because WebGUI::Operation::Help
@ -24,7 +24,7 @@ use WebGUI::Operation::Help;
use Test::More;
my $numTests = 0;
my $session = initialize(); # this line is required
my $session = WebGUI::Test->session;
my @helpFileSet = WebGUI::Operation::Help::_getHelpFilesList($session);
@ -39,26 +39,3 @@ foreach my $helpSet (@helpFileSet) {
my $help = WebGUI::Operation::Help::_load($session, $helpName);
ok(keys %{ $help }, "$helpName compiled");
}
# put your tests here
cleanup($session); # this line is required
# ---- DO NOT EDIT BELOW THIS LINE -----
sub initialize {
$|=1; # disable output buffering
my $configFile;
GetOptions(
'configFile=s'=>\$configFile
);
exit 1 unless ($configFile);
return WebGUI::Session->open("../..",$configFile);
}
sub cleanup {
my $session = shift;
$session->close();
}