Change Catalsyt _parse_attrs so that when sub attr handlers:
[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 Test::Exception;
7use Carp ();
74c89dea 8
9# Doing various silly things, like for example
2664a81b 10# use CGI qw/:standard/ in your conrtoller / app
74c89dea 11# will overwrite your meta method, therefore Catalyst
12# can't depend on it being there correctly.
13
14# This is/was demonstrated by Catalyst::Controller::WrapCGI
15# and Catalyst::Plugin::Cache::Curried
16
2664a81b 17use Catalyst::Test 'TestAppWithMeta';
18
19ok( request('/')->is_success );
74c89dea 20