Test uri_for with path = 0
[catagits/Catalyst-Runtime.git] / t / aggregate / live_engine_setup_plugins.t
CommitLineData
fbcc39ad 1use strict;
2use warnings;
3
4use FindBin;
42da66a9 5use lib "$FindBin::Bin/../lib";
fbcc39ad 6
7use Test::More tests => 2;
8use 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}