X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FTestApp.pm;h=f5a7c564e19674c8e0411d82cfe188e55bfb5d68;hb=26dc649ad1a74622697f25fcbf29e806e75fcd2f;hp=058084f63d79b9fb07b5ebfb15ce2504a3672b5c;hpb=083ee5d9a198ffee958dd54179c7352e6dc13c11;p=catagits%2FCatalyst-Runtime.git diff --git a/t/lib/TestApp.pm b/t/lib/TestApp.pm index 058084f..f5a7c56 100644 --- a/t/lib/TestApp.pm +++ b/t/lib/TestApp.pm @@ -73,16 +73,6 @@ sub class_forward_test_method :Private { $c->response->headers->header( 'X-Class-Forward-Test-Method' => 1 ); } -sub class_go_test_method :Private { - my ( $self, $c ) = @_; - $c->response->headers->header( 'X-Class-Go-Test-Method' => 1 ); -} - -sub class_visit_test_method :Private { - my ( $self, $c ) = @_; - $c->response->headers->header( 'X-Class-Visit-Test-Method' => 1 ); -} - sub loop_test : Local { my ( $self, $c ) = @_; @@ -107,6 +97,6 @@ package Catalyst::Plugin::Test::Inline; use strict; -use base qw/Catalyst::Base Class::Data::Inheritable/; +use base qw/Class::Data::Inheritable/; 1;