X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Fplugin_new_method_backcompat.t;h=28455fb8e69ffced73bed05a957308307d258837;hp=c0cb13a6bb6450ba12cb7b75ef993a9bb572e49a;hb=fd587c517f98b124686e56d0413491161a4a9d19;hpb=81ef9afd4f446447d48b5844045b388f6d304d2b diff --git a/t/plugin_new_method_backcompat.t b/t/plugin_new_method_backcompat.t index c0cb13a..28455fb 100644 --- a/t/plugin_new_method_backcompat.t +++ b/t/plugin_new_method_backcompat.t @@ -8,13 +8,13 @@ # that plugins don't get it wrong for us. # Also tests method modifiers and etc in MyApp.pm still work as expected. -use Test::More tests => 8; -use Test::Exception; +use Test::More; use Moose::Util qw/find_meta/; use FindBin; use lib "$FindBin::Bin/lib"; use Catalyst::Test qw/TestAppPluginWithConstructor/; +TestAppPluginWithConstructor->_make_immutable_if_needed; ok find_meta('TestAppPluginWithConstructor')->is_immutable, 'Am immutable after use'; @@ -22,8 +22,13 @@ ok request('/foo')->is_success, 'Can get /foo'; is $TestAppPluginWithConstructor::MODIFIER_FIRED, 1, 'Before modifier was fired correctly.'; my $warning; -local $SIG{__WARN__} = sub { $warning = $_[0] }; -eval "use TestAppBadlyImmutable;"; +eval "use TestAppBadlyImmutable"; +local $SIG{__WARN__} = sub { $warning .= $_[0] }; + +TestAppBadlyImmutable->_make_immutable_if_needed; + like $warning, qr/\QYou made your application class (TestAppBadlyImmutable) immutable/, 'An application class that is already immutable but does not inline the constructor warns at ->setup'; +done_testing; +