Remove uneccesary code i accidentially copied from another test.
[catagits/Catalyst-Runtime.git] / t / live_component_controller_moose.t
CommitLineData
b68b4c7c 1use strict;
2use warnings;
3
4use FindBin;
5use lib "$FindBin::Bin/lib";
6
b68b4c7c 7use Test::More tests => 2;
8use Catalyst::Test 'TestApp';
9
10{
11 my $response = request('http://localhost/moose/get_attribute');
12 ok($response->is_success);
13 is($response->content, '42', 'attribute default values get set correctly');
14}