Bump MX::MA again, couple of little tidyups
[catagits/Catalyst-Runtime.git] / t / aggregate / live_component_controller_moose.t
index 1f24a16..74d2fee 100644 (file)
@@ -4,23 +4,33 @@ use warnings;
 use FindBin;
 use lib "$FindBin::Bin/../lib";
 
-use Test::More tests => 7;
+use Test::More tests => 12;
 use Catalyst::Test 'TestApp';
 
 {
     my $response = request('http://localhost/moose/get_attribute');
     ok($response->is_success);
     is($response->content, '42', 'attribute default values get set correctly');
-    is($response->header('X-Catalyst-Test-Before'), 'before called', 'before works as expected');
 }
 
 {
-    TODO: {
-        local $TODO = 'Wrapping methods in a subclass, when the subclass contains no other methods with attributes is broken';
-        my $response = request('http://localhost/moose/methodmodifiers/get_attribute');       
-        ok($response->is_success);
-        is($response->content, '42', 'parent controller method called');
-        is($response->header('X-Catalyst-Test-Before'), 'before called', 'before works as expected');
-        is($response->header('X-Catalyst-Test-After'), 'after called', 'after works as expected');
-    }
+    my $response = request('http://localhost/moose/methodmodifiers/get_attribute');       
+    ok($response->is_success);
+    is($response->content, '42', 'parent controller method called');
+    is($response->header('X-Catalyst-Test-After'), 'after called', 'after works as expected');
+}
+
+{
+    my $response = request('http://localhost/moose/with_local_modifier');
+    ok($response->is_success);
+    is($response->content, '42', 'attribute default values get set correctly');
+    is($response->header('X-Catalyst-Test-Before'), 'before called', 'before works as expected');
+}
+{
+    my $response = request('http://localhost/moose/methodmodifiers/with_local_modifier');
+    ok($response->is_success);
+    is($response->content, '42', 'attribute default values get set correctly');
+    is($response->header('X-Catalyst-Test-After'), 'after called', 'after works as expected');
+    is($response->header('X-Catalyst-Test-Before'), 'before called', 'before works as expected');
 }
+