X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F500_moose_extends_mouse.t;h=4a79e7da25dff3c248e73726b8c1bfb6b5c4268e;hb=53d4053e1f62161dd56e6adf8158eb7df72d1af0;hp=31e7afe78ffad306ab71f91737d3c98bd775171e;hpb=de252f0e1d968c969e05364a0e14d05e468d8f29;p=gitmo%2FMouse.git diff --git a/t/500_moose_extends_mouse.t b/t/500_moose_extends_mouse.t index 31e7afe..4a79e7d 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 required for this test" unless eval { require Moose && Moose->VERSION('0.59') }; + plan skip_all => "Moose 0.68 required for this test" unless eval { require Moose && Moose->VERSION('0.68') }; plan tests => 27; } -use Mouse::Util ':test'; +use Test::Exception; { package Foo;