removing more diag output

This commit is contained in:
Colin Kuskie 2006-04-21 16:41:53 +00:00
parent 3d215deb6e
commit 7f30feae35
6 changed files with 0 additions and 15 deletions

View file

@ -41,18 +41,15 @@ my $numTests = scalar @testSets;
plan tests => $numTests;
diag("Planning on running $numTests tests\n");
my $session = WebGUI::Test->session;
unless ($session->config->get('macros')->{'D'}) {
diag("Inserting macro into config");
Macro_Config::insert_macro($session, 'D', 'Date');
}
foreach my $testSet (@testSets) {
$output = sprintf $macroText, $testSet->{format}, $wgbday;
diag("current test: $output");
WebGUI::Macro::process($session, \$output);
is($output, $testSet->{output}, 'testing '.$testSet->{format});
}