Working, no functionality yet
[catagits/Catalyst-TraitFor-Request-ProxyBase.git] / t / live-test.t
CommitLineData
1640822e 1#!/usr/bin/env perl
2
3use strict;
4use warnings;
044d8723 5use Test::More tests => 1;
1640822e 6
7# setup library path
8use FindBin qw($Bin);
9use lib "$Bin/lib";
10
044d8723 11use TestApp;
1640822e 12
13# a live test against TestApp, the test application
044d8723 14use Catalyst::Test 'TestApp';
15
16my ($res, $c) = ctx_request('/');
17is($c->res->body, 'http://localhost/');
1640822e 18