Author: ericwilhelm
Date: Sun Feb 18 17:27:21 2007
New Revision: 9128
Modified:
Module-Build/trunk/Changes
Module-Build/trunk/t/manifypods.t
Log:
t/manifypods.t - catchup with r8681
Changes - note r8681
Modified: Module-Build/trunk/Changes
==============================================================================
--- Module-Build/trunk/Changes (original)
+++ Module-Build/trunk/Changes Sun Feb 18 17:27:21 2007
@@ -1,5 +1,7 @@
Revision history for Perl extension Module::Build.
+ - get_action_docs() dies on error rather than twiddling $@
+
- Made ModuleInfo's _evaluate_version_line() compatible with 'use
version ...$VERSION' lines. [Eric Wilhelm]
Modified: Module-Build/trunk/t/manifypods.t
==============================================================================
--- Module-Build/trunk/t/manifypods.t (original)
+++ Module-Build/trunk/t/manifypods.t Sun Feb 18 17:27:21 2007
@@ -147,7 +147,7 @@
# Make sure we can find our own action documentation
ok $mb2->get_action_docs('build');
-ok !$mb2->get_action_docs('foo');
+ok !eval{$mb2->get_action_docs('foo')};
# Make sure those docs are the correct ones
foreach ('testcover', 'disttest') {