353e51563612378f25d5ce3157c9b8f1f4d0ab50
[catagits/Catalyst-Runtime.git] / t / live_component_controller_moose.t
1 use strict;
2 use warnings;
3 use Test::More;
4
5 BEGIN {
6     if (eval 'require Moose; 1') {
7         plan tests => 2;
8     }
9     else {
10         plan skip_all => 'Moose is required for this test';
11     }
12 }
13
14 use FindBin;
15 use lib "$FindBin::Bin/lib";
16
17 use Catalyst::Test 'TestApp';
18
19 {
20     my $response = request('http://localhost/moose/get_attribute');
21     ok($response->is_success);
22     is($response->content, '42', 'attribute default values get set correctly');
23 }