From: Dave Rolsky Date: Fri, 13 Feb 2009 20:08:48 +0000 (+0000) Subject: Requires Test::Warn 0.11 to avoid some bugs it seems to trigger (based on a report... X-Git-Tag: 0.70~20 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e5efd577d4bf3d9be762e8ad6d5ef37a46bfbfb3;hp=c8a26288b5f3f115cfa55ec0b97c98d6f58cdc49;p=gitmo%2FMoose.git Requires Test::Warn 0.11 to avoid some bugs it seems to trigger (based on a report from IRC) --- diff --git a/t/000_recipes/extending/001_base_class.t b/t/000_recipes/extending/001_base_class.t index 35141bf..fdc4105 100644 --- a/t/000_recipes/extending/001_base_class.t +++ b/t/000_recipes/extending/001_base_class.t @@ -7,8 +7,8 @@ use Test::More; use Test::Exception; BEGIN { - unless ( eval 'use Test::Warn 0.10; 1' ) { - plan skip_all => 'These tests require Test::Warn 0.10+'; + unless ( eval 'use Test::Warn 0.11; 1' ) { + plan skip_all => 'These tests require Test::Warn 0.11+'; } else { plan tests => 4; diff --git a/t/050_metaclasses/012_moose_exporter.t b/t/050_metaclasses/012_moose_exporter.t index 3357ae1..5bc4115 100644 --- a/t/050_metaclasses/012_moose_exporter.t +++ b/t/050_metaclasses/012_moose_exporter.t @@ -7,8 +7,8 @@ use Test::More; use Test::Exception; BEGIN { - unless ( eval 'use Test::Warn 0.10; 1' ) { - plan skip_all => 'These tests require Test::Warn 0.10'; + unless ( eval 'use Test::Warn 0.11; 1' ) { + plan skip_all => 'These tests require Test::Warn 0.11'; } else { plan tests => 40;