From 9c1c0fa576506fc18125a42eeb9cf590e530cb9c Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Sun, 25 Dec 2005 00:09:20 +0000 Subject: [PATCH] Output PODs in sorted order 1 test was undeclared in Utility.t --- t/POD.t | 2 +- t/Utility.t | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/t/POD.t b/t/POD.t index 3690b1878..de52b6ce1 100644 --- a/t/POD.t +++ b/t/POD.t @@ -27,7 +27,7 @@ find(\&countModules, "../lib/WebGUI"); my $moduleCount = scalar(@modules); diag("Planning on running $moduleCount tests\n"); plan tests => $moduleCount; -foreach my $package (@modules) { +foreach my $package (sort @modules) { my $pc = Pod::Coverage->new(package=>$package); ok($pc->coverage, $package); } diff --git a/t/Utility.t b/t/Utility.t index b10734728..754a51a7b 100644 --- a/t/Utility.t +++ b/t/Utility.t @@ -16,7 +16,7 @@ use Getopt::Long; use WebGUI::Session; # ---- END DO NOT EDIT ---- -use Test::More tests => 20; # increment this value for each test you create +use Test::More tests => 21; # increment this value for each test you create initialize(); # this line is required