stop using Moo as a test package
[catagits/Catalyst-Runtime.git] / t / aggregate / live_component_controller_actionroles.t
index 0bf1b0c..a78fbec 100644 (file)
@@ -8,9 +8,9 @@ use lib "$FindBin::Bin/../lib";
 use Catalyst::Test 'TestApp';
 
 my %roles = (
-    foo  => 'TestApp::ActionRole::Moo',
-    bar  => 'TestApp::ActionRole::Moo',
-    baz  => 'Moo',
+    foo  => 'TestApp::ActionRole::Guff',
+    bar  => 'TestApp::ActionRole::Guff',
+    baz  => 'Guff',
     quux => 'Catalyst::ActionRole::Zoo',
 );
 
@@ -24,9 +24,9 @@ while (my ($path, $role) = each %roles) {
 {
     my $resp = request("/actionroles/corge");
     ok($resp->is_success);
-    is($resp->content, 'TestApp::ActionRole::Moo');
+    is($resp->content, 'TestApp::ActionRole::Guff');
     is($resp->header('X-Affe'), 'Tiger');
-   is($resp->header('X-Action-After'), 'moo');
+    is($resp->header('X-Action-After'), 'moo');
 }
 {
     my $resp = request("/actionroles/frew");