use inlined module hiding in tests
[catagits/Catalyst-Runtime.git] / t / aggregate / live_engine_setup_plugins.t
1 use strict;
2 use warnings;
3
4 use FindBin;
5 use lib "$FindBin::Bin/../lib";
6
7 use Test::More tests => 2;
8 use Catalyst::Test 'TestApp';
9
10 {
11   # Allow overriding automatic root.
12     ok( my $response = request('http://localhost/engine/response/headers/one'), 'Request' );
13     is( $response->header('X-Catalyst-Plugin-Setup'), '1' );
14 }