X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F500_moose_extends_mouse.t;h=cb99d00911a9e4213a1a81b092fb263ad29cc3a9;hb=21498b08feb4f9e5f74670eafe293adcbf3cdd29;hp=b4bff069f50d8ec16af415021da35dc27e7691fb;hpb=693a0d062fb308eae5be5025247fb1fd05bb89f2;p=gitmo%2FMouse.git diff --git a/t/500_moose_extends_mouse.t b/t/500_moose_extends_mouse.t index b4bff06..cb99d00 100644 --- a/t/500_moose_extends_mouse.t +++ b/t/500_moose_extends_mouse.t @@ -4,12 +4,13 @@ use strict; use warnings; use Test::More; +use Test::Exception; BEGIN { - plan skip_all => "Moose 0.59 required for this test" unless eval { require Moose 0.59 }; + plan skip_all => "Moose required for this test" unless eval { require Moose && Moose->VERSION('0.59') }; plan tests => 27; } -use Mouse::Util ':test'; +use Test::Exception; { package Foo;