added test files to MANIFEST
[catagits/Catalyst-View-TT.git] / t / 06includepath.t
CommitLineData
425f7060 1use strict;
2use warnings;
3use Test::More tests => 5;
4
5use FindBin;
6use lib "$FindBin::Bin/lib";
7
8use_ok('Catalyst::Test', 'TestApp');
9my $response;
10
11ok(($response = request("/test_includepath?view=Appconfig&template=testpath.tt&additionalpath=test_include_path"))->is_success, 'request ok');
12is($response->content, TestApp->config->{default_message}, 'message ok');
13
14
15ok(($response = request("/test_includepath?view=Includepath&template=testpath.tt"))->is_success, 'request ok');
16is($response->content, TestApp->config->{default_message}, 'message ok');
17