[Catalyst-commits] r13542 - Catalyst-Runtime/5.80/trunk/t/aggregate

t0m at dev.catalyst.perl.org t0m at dev.catalyst.perl.org
Thu Aug 26 00:08:24 GMT 2010


Author: t0m
Date: 2010-08-26 01:08:24 +0100 (Thu, 26 Aug 2010)
New Revision: 13542

Added:
   Catalyst-Runtime/5.80/trunk/t/aggregate/live__component_controller_action_chained2.t
Removed:
   Catalyst-Runtime/5.80/trunk/t/aggregate/unit_dispatcher_chained_action.t
Log:
Rename test, to merge

Copied: Catalyst-Runtime/5.80/trunk/t/aggregate/live__component_controller_action_chained2.t (from rev 13537, Catalyst-Runtime/5.80/trunk/t/aggregate/unit_dispatcher_chained_action.t)
===================================================================
--- Catalyst-Runtime/5.80/trunk/t/aggregate/live__component_controller_action_chained2.t	                        (rev 0)
+++ Catalyst-Runtime/5.80/trunk/t/aggregate/live__component_controller_action_chained2.t	2010-08-26 00:08:24 UTC (rev 13542)
@@ -0,0 +1,17 @@
+use strict;
+use warnings;
+use FindBin qw/$Bin/;
+use lib "$Bin/../lib";
+use Catalyst::Test 'ChainedActionsApp';
+use Test::More;
+
+content_like('/', qr/Application Home Page/, 'Application home');
+content_like('/15/GoldFinger', qr/List project GoldFinger pages/, 'GoldFinger Project Index');
+content_like('/15/GoldFinger/4/007', qr/This is 007 page of GoldFinger project/, '007 page in GoldFinger Project');
+content_like('/account', qr/New account o login/, 'no account');
+content_like('/account/ferz', qr/This is account ferz/, 'account');
+content_like('/account/123', qr/This is account 123/, 'account');
+action_notfound('/c');
+
+done_testing;
+

Deleted: Catalyst-Runtime/5.80/trunk/t/aggregate/unit_dispatcher_chained_action.t
===================================================================
--- Catalyst-Runtime/5.80/trunk/t/aggregate/unit_dispatcher_chained_action.t	2010-08-26 00:01:20 UTC (rev 13541)
+++ Catalyst-Runtime/5.80/trunk/t/aggregate/unit_dispatcher_chained_action.t	2010-08-26 00:08:24 UTC (rev 13542)
@@ -1,17 +0,0 @@
-use strict;
-use warnings;
-use FindBin qw/$Bin/;
-use lib "$Bin/../lib";
-use Catalyst::Test 'ChainedActionsApp';
-use Test::More;
-
-content_like('/', qr/Application Home Page/, 'Application home');
-content_like('/15/GoldFinger', qr/List project GoldFinger pages/, 'GoldFinger Project Index');
-content_like('/15/GoldFinger/4/007', qr/This is 007 page of GoldFinger project/, '007 page in GoldFinger Project');
-content_like('/account', qr/New account o login/, 'no account');
-content_like('/account/ferz', qr/This is account ferz/, 'account');
-content_like('/account/123', qr/This is account 123/, 'account');
-action_notfound('/c');
-
-done_testing;
-




More information about the Catalyst-commits mailing list