Skip Menu |

This queue is for tickets about the Test-Most CPAN distribution.

Report information
The Basics
Id: 43367
Status: resolved
Priority: 0/
Queue: Test-Most

People
Owner: Nobody in particular
Requestors: mschwern [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 0.20_02
Fixed in: (no value)



Subject: Depend on Test::More directly
It's not entirely safe to assume that depending on Test::Simple will pull in Test::More. It's possible (though not probable) they will be split into different distributions.
Subject: depend.patch
diff --git a/Build.PL b/Build.PL index ebf626f..79dbc9f 100644 --- a/Build.PL +++ b/Build.PL @@ -9,7 +9,7 @@ my $builder = Module::Build->new( dist_version_from => 'lib/Test/Most.pm', requires => { 'Exception::Class' => 1.14, - 'Test::Simple' => 0.82, + 'Test::More' => 0.82, 'Test::Exception' => 0, 'Test::Differences' => 0, 'Test::Deep' => 0,
Applied in 0.21_01. Also on github: http://github.com/Ovid/test--most/tree/master Thanks! Ovid