[Rt-commit] r5612 - in Test-Dependencies/trunk: lib/Test
zev at bestpractical.com
zev at bestpractical.com
Wed Jul 19 16:36:21 EDT 2006
Author: zev
Date: Wed Jul 19 16:36:21 2006
New Revision: 5612
Modified:
Test-Dependencies/trunk/ (props changed)
Test-Dependencies/trunk/Changes
Test-Dependencies/trunk/lib/Test/Dependencies.pm
Log:
r16035 at galvatron: zev | 2006-07-19 16:34:37 -0400
* better test descriptions when Makefile.PL contains extraneous requires calls
* forgot to bump version number in pod in last revision
Modified: Test-Dependencies/trunk/Changes
==============================================================================
--- Test-Dependencies/trunk/Changes (original)
+++ Test-Dependencies/trunk/Changes Wed Jul 19 16:36:21 2006
@@ -1,5 +1,9 @@
Revision history for Test-Dependencies
+0.06 Wed Jul 19 16:31:08 EDT 2006
+ * better test descriptions when Makefile.PL contains extraneous requires calls
+ * forgot to bump version number in pod and forgot date in changelog in last revision
+
0.05 Tue Jul 18 22:55:58 EDT 2006
* removed references to test_pass (and upped Test::Builder::Tester dep to 0.64)
* rearranged changelog
Modified: Test-Dependencies/trunk/lib/Test/Dependencies.pm
==============================================================================
--- Test-Dependencies/trunk/lib/Test/Dependencies.pm (original)
+++ Test-Dependencies/trunk/lib/Test/Dependencies.pm Wed Jul 19 16:36:21 2006
@@ -18,11 +18,11 @@
=head1 VERSION
-Version 0.04
+Version 0.06
=cut
-our $VERSION = '0.05';
+our $VERSION = '0.06';
=head1 SYNOPSIS
@@ -199,15 +199,15 @@
}
foreach my $mod (sort @in_core) {
- $tb->ok(0, "Required module $mod is already in core");
+ $tb->ok(0, "Required module $mod is in core");
}
foreach my $mod (sort keys %required) {
- $tb->ok(0, "$mod is not a dependency");
+ $tb->ok(0, "$mod is not a run-time dependency");
}
foreach my $mod (sort keys %build_required) {
- $tb->ok(0, "$mod is not a build dependency");
+ $tb->ok(0, "$mod is not a build-time dependency");
}
}
More information about the Rt-commit
mailing list