Moved action methods from t/lib/TestApp.pm to t/lib/Test/Controller/Root.pm. Uncommen...
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Controller.pm
index c8db2e7..f23ad4a 100644 (file)
@@ -211,10 +211,9 @@ sub register_action_methods {
     #this is still not correct for some reason.
     my $namespace = $self->action_namespace($c);
 
-    # Uncomment as soon as you fix the tests :)
-    #if (!blessed($self) && $self eq $c && scalar(@methods)) {
-    #    $c->log->warn("Action methods found defined in your application class, $self. This is deprecated, please move them into a Root controller.");
-    #}
+    if (!blessed($self) && $self eq $c && scalar(@methods)) {
+        $c->log->warn("Action methods found defined in your application class, $self. This is deprecated, please move them into a Root controller.");
+    }
 
     foreach my $method (@methods) {
         my $name = $method->name;