Removing diag to clean up smoke test output

This commit is contained in:
Wouter van Oijen 2006-07-15 20:38:35 +00:00
parent 253dc4a533
commit 7d9d8f1b73

View file

@ -21,14 +21,14 @@ plan skip_all => 'set TEST_SYNTAX to enable this test' unless $ENV{TEST_SYNTAX};
my @modules;
my $wgLib = WebGUI::Test->lib;
diag("Checking modules in $wgLib");
#diag("Checking modules in $wgLib");
File::Find::find( \&getWebGUIModules, $wgLib);
my $numTests = scalar @modules;
plan tests => $numTests;
diag("Planning on $numTests tests");
#diag("Planning on $numTests tests");
foreach my $package (@modules) {
my $command = "$^X -I$wgLib -wc $package 2>&1";