From: Florian Ragwitz Date: Tue, 12 May 2009 11:31:13 +0000 (+0200) Subject: Depend on latest Test::Exception to avoid failing tests. X-Git-Tag: 0.84~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4cd537dd083a735ea5f07e02fc9163a3c6bdc84b;p=gitmo%2FClass-MOP.git Depend on latest Test::Exception to avoid failing tests. Closes RT#45987. --- diff --git a/Changes b/Changes index 2879542..6db10bb 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Perl extension Class-MOP. + * Makefile.PL + - Depend on Text::Exception 0.27 to avoid failing tests ond old + versions (rafl) + * Class::MOP - Made is_class_loaded a little stricter. It was reporting that a class was loaded if it merely had an @ISA variable in its diff --git a/Makefile.PL b/Makefile.PL index 3b097f2..3331eef 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -23,7 +23,7 @@ requires 'Task::Weaken'; test_requires 'File::Spec'; test_requires 'Test::More' => '0.77'; -test_requires 'Test::Exception' => '0.21'; +test_requires 'Test::Exception' => '0.27'; extra_tests();