require Catalyst::Runtime explicitly
[catagits/Catalyst-Plugin-ConfigLoader.git] / t / 10-live_auto.t
CommitLineData
a7afecf7 1use strict;
2use warnings;
3
4use FindBin;
5use lib "$FindBin::Bin/lib";
6
7use Test::More tests => 4;
8
9use Catalyst::Test 'TestApp';
10
11{
12 my $response;
13 ok( $response = request('http://localhost/config/'), 'request ok' );
14 is( $response->content, 'foo', 'config ok' );
15
16 $response = request('http://localhost/appconfig/cache');
17 ok( $response->content !~ /^__HOME__/, 'home dir substituted in config var' );
18
19 $response = request('http://localhost/appconfig/foo');
20 is( $response->content, 'bar', 'app finalize_config works' );
21}