convert all uses of Test::Exception to Test::Fatal
[catagits/Catalyst-Runtime.git] / t / aggregate / meta_method_unneeded.t
CommitLineData
74c89dea 1use strict;
2use warnings;
2664a81b 3use FindBin qw/$Bin/;
b1ead5a2 4use lib "$Bin/../lib";
c98492ae 5use Test::More tests => 1;
74c89dea 6use Carp ();
74c89dea 7
8# Doing various silly things, like for example
2664a81b 9# use CGI qw/:standard/ in your conrtoller / app
74c89dea 10# will overwrite your meta method, therefore Catalyst
11# can't depend on it being there correctly.
12
13# This is/was demonstrated by Catalyst::Controller::WrapCGI
14# and Catalyst::Plugin::Cache::Curried
15
2664a81b 16use Catalyst::Test 'TestAppWithMeta';
17
18ok( request('/')->is_success );
74c89dea 19