summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-02-16 11:30:08 -0600
committerJesse Luehrs <doy@tozt.net>2011-02-16 11:30:08 -0600
commit93fb811f15c315854c3b9312e38333b7aab0874a (patch)
treea6b57e7aeffa626c738cf0224e2cf6122ce85588
parent031596353f6af6d4b08d9c5aacef3577584161c4 (diff)
downloaddist-zilla-pluginbundle-doy-93fb811f15c315854c3b9312e38333b7aab0874a.tar.gz
dist-zilla-pluginbundle-doy-93fb811f15c315854c3b9312e38333b7aab0874a.zip
always dep on Test::More 0.880.06
-rw-r--r--Changes1
-rw-r--r--lib/Dist/Zilla/PluginBundle/DOY.pm7
2 files changed, 8 insertions, 0 deletions
diff --git a/Changes b/Changes
index f5813f2..70765bf 100644
--- a/Changes
+++ b/Changes
@@ -5,6 +5,7 @@ Revision history for Dist-Zilla-PluginBundle-DOY
- use web and clone urls in Repository, and actually get the repo to use
from git
- allow testing release by setting $ENV{DZIL_FAKE_RELEASE}
+ - always dep on Test::More 0.88 for done_testing
0.05 2010-10-27
- allow using MakeMaker::Awesome if requested
diff --git a/lib/Dist/Zilla/PluginBundle/DOY.pm b/lib/Dist/Zilla/PluginBundle/DOY.pm
index ea11f48..495f8c2 100644
--- a/lib/Dist/Zilla/PluginBundle/DOY.pm
+++ b/lib/Dist/Zilla/PluginBundle/DOY.pm
@@ -179,6 +179,13 @@ sub configure {
my $self = shift;
$self->add_plugins(
+ [ 'Prereqs' => 'TestMoreDoneTesting' => {
+ -phase => 'test',
+ -type => 'requires',
+ 'Test::More' => '0.88',
+ } ]
+ );
+ $self->add_plugins(
map { [ $_ => ($self->plugin_options->{$_} || {}) ] }
@{ $self->_plugins },
);