[Catalyst-commits] r8743 - in Catalyst-Runtime/5.80/trunk: .
t/lib/Catalyst/Plugin/Test
t0m at dev.catalyst.perl.org
t0m at dev.catalyst.perl.org
Fri Dec 5 08:52:23 GMT 2008
Author: t0m
Date: 2008-12-05 08:52:22 +0000 (Fri, 05 Dec 2008)
New Revision: 8743
Modified:
Catalyst-Runtime/5.80/trunk/Changes
Catalyst-Runtime/5.80/trunk/TODO
Catalyst-Runtime/5.80/trunk/t/lib/Catalyst/Plugin/Test/Plugin.pm
Log:
Changelog up to date, make comment re NEXT in the tests more clear, update TODO list with 5.80 related bits from last night
Modified: Catalyst-Runtime/5.80/trunk/Changes
===================================================================
--- Catalyst-Runtime/5.80/trunk/Changes 2008-12-05 08:33:15 UTC (rev 8742)
+++ Catalyst-Runtime/5.80/trunk/Changes 2008-12-05 08:52:22 UTC (rev 8743)
@@ -1,6 +1,9 @@
# This file documents the revision history for Perl extension Catalyst.
5.8000_04
+ - Silence Class::C3::Adopt::NEXT warnings in the test suite (rafl)
+ - Fix loads of 'used once, possible typo' warnings (rafl)
+ - Additional tests to ensure upload temp files are deleted (andyg)
- Remove use of NEXT from the test suite, except for one case
which tests if Class::C3::Adopt::NEXT is working (t0m)
- Use a predicate to avoid recursion in cases where the uri
Modified: Catalyst-Runtime/5.80/trunk/TODO
===================================================================
--- Catalyst-Runtime/5.80/trunk/TODO 2008-12-05 08:33:15 UTC (rev 8742)
+++ Catalyst-Runtime/5.80/trunk/TODO 2008-12-05 08:52:22 UTC (rev 8743)
@@ -1,14 +1,16 @@
-TBD pre 5.8000_04 dev release:
+ - Class::C3::Adopt::NEXT - some people are getting more than one warning
+ per package, make a test case for this (t0m)
- - Simple test for NEXT compat in core (t0m).
+ - Catalyst::Plugin::Authentication fails tests. Believed to be as
+ Catalyst::Plugin::Authentication::Credential::Password has a
+ ->mk_accessors('_config'), which is also class data.
+ Make a test case for this (t0m)
- Looks like stash is not available during prepare_path when running under
Catalyst::Test.. Run MojoMojo's t/01app.t and it will explode with
"Can't use an undefined value as a HASH reference" - test case for core
+ fix maybe (marcus)
----
-
- Common engine test failures, look into and get tests into core.
- Catalyst-Plugin-Authorization-ACL, Can't locate object method "tree" via package "Catalyst::Dispatcher", fix the plugin as tree was never a public method.
Modified: Catalyst-Runtime/5.80/trunk/t/lib/Catalyst/Plugin/Test/Plugin.pm
===================================================================
--- Catalyst-Runtime/5.80/trunk/t/lib/Catalyst/Plugin/Test/Plugin.pm 2008-12-05 08:33:15 UTC (rev 8742)
+++ Catalyst-Runtime/5.80/trunk/t/lib/Catalyst/Plugin/Test/Plugin.pm 2008-12-05 08:52:22 UTC (rev 8743)
@@ -17,9 +17,9 @@
my $class = shift;
-# Note: This use of NEXT is deliberately left here to ensure back
-# compat, as NEXT always used to be loaded, but is now replaced
-# by Class::C3::Adopt::NEXT.
+# Note: This use of NEXT is deliberately left here (without a use NEXT)
+# to ensure back compat, as NEXT always used to be loaded, but
+# is now replaced by Class::C3::Adopt::NEXT.
my $c = $class->NEXT::prepare(@_);
$c->response->header( 'X-Catalyst-Plugin-Setup' => $c->ran_setup );
More information about the Catalyst-commits
mailing list