t/controller/action/* tests
Christian Hansen [Sun, 10 Apr 2005 22:43:06 +0000 (22:43 +0000)]
t/controller/action/begin.t
t/controller/action/default.t
t/controller/action/end.t
t/controller/action/forward.t
t/controller/action/inheritance.t

index d18dc27..7e19c44 100644 (file)
@@ -12,7 +12,6 @@ use Catalyst::Test 'TestApp';
 
 {
     my @expected = qw[
-        TestApp::Controller::Action->begin
         TestApp::Controller::Action::Begin->begin
         TestApp::Controller::Action::Begin->default
         TestApp::View::Dump::Request->process
index 5d7cbd0..88c32ca 100644 (file)
@@ -12,7 +12,6 @@ use Catalyst::Test 'TestApp';
 
 {
     my @expected = qw[
-        TestApp::Controller::Action->begin
         TestApp::Controller::Action::Default->begin
         TestApp::Controller::Action::Default->default
         TestApp::View::Dump::Request->process
index f17a849..b7f1999 100644 (file)
@@ -12,7 +12,6 @@ use Catalyst::Test 'TestApp';
 
 {
     my @expected = qw[
-        TestApp::Controller::Action->begin
         TestApp::Controller::Action::End->begin
         TestApp::Controller::Action::End->default
         TestApp::View::Dump::Request->process
index d4a163e..8228971 100644 (file)
@@ -12,7 +12,6 @@ use Catalyst::Test 'TestApp';
 
 {
     my @expected = qw[
-        TestApp::Controller::Action->begin
         TestApp::Controller::Action::Forward->begin
         TestApp::Controller::Action::Forward->one
         TestApp::Controller::Action::Forward->two
@@ -35,7 +34,6 @@ use Catalyst::Test 'TestApp';
 
 {
     my @expected = qw[
-        TestApp::Controller::Action->begin
         TestApp::Controller::Action::Forward->begin
         TestApp::Controller::Action::Forward->jojo
         TestApp::Controller::Action::Forward->one
index 651539e..e3f009e 100644 (file)
@@ -12,7 +12,6 @@ use Catalyst::Test 'TestApp';
 
 {
     my @expected = qw[
-        TestApp::Controller::Action->begin
         TestApp::Controller::Action::Inheritance->begin
         TestApp::Controller::Action::Inheritance->default
         TestApp::View::Dump::Request->process
@@ -32,13 +31,10 @@ use Catalyst::Test 'TestApp';
 
 {
     my @expected = qw[
-        TestApp::Controller::Action->begin
-        TestApp::Controller::Action::Inheritance->begin
         TestApp::Controller::Action::Inheritance::A->begin
         TestApp::Controller::Action::Inheritance::A->default
         TestApp::View::Dump::Request->process
         TestApp::Controller::Action::Inheritance::A->end
-        TestApp::Controller::Action::Inheritance->end
     ];
 
     my $expected = join( ", ", @expected );
@@ -54,15 +50,10 @@ use Catalyst::Test 'TestApp';
 
 {
     my @expected = qw[
-        TestApp::Controller::Action->begin
-        TestApp::Controller::Action::Inheritance->begin
-        TestApp::Controller::Action::Inheritance::A->begin
         TestApp::Controller::Action::Inheritance::A::B->begin
         TestApp::Controller::Action::Inheritance::A::B->default
         TestApp::View::Dump::Request->process
         TestApp::Controller::Action::Inheritance::A::B->end
-        TestApp::Controller::Action::Inheritance::A->end
-        TestApp::Controller::Action::Inheritance->end
     ];
 
     my $expected = join( ", ", @expected );