Tweaks
[catagits/Catalyst-Component-ACCEPT_CONTEXT.git] / t / 01-live.t
CommitLineData
75f37967 1#!perl
2# Copyright (c) 2007 Jonathan Rockway <jrockway@cpan.org>
3
4use strict;
5use warnings;
6use Test::More tests => 4;
7
8use FindBin qw($Bin);
9use lib "$Bin/lib";
10use Catalyst::Test qw(TestApp);
11
12is( get('/controller'), 'controller', 'got controller ok' );
13is( get('/model'), 'model', 'model ok' );
14is( get('/view'), 'view', 'view ok' );
15is( get('/foo'), 'baz', 'got app at new() time' );