[Catalyst-commits] r13279 - Catalyst-Runtime/5.80/trunk/t/aggregate
jhannah at dev.catalyst.perl.org
jhannah at dev.catalyst.perl.org
Thu May 20 19:46:31 GMT 2010
Author: jhannah
Date: 2010-05-20 20:46:31 +0100 (Thu, 20 May 2010)
New Revision: 13279
Modified:
Catalyst-Runtime/5.80/trunk/t/aggregate/unit_core_ctx_attr.t
Log:
Oops. I should have TODO'd this one. rafl++
Modified: Catalyst-Runtime/5.80/trunk/t/aggregate/unit_core_ctx_attr.t
===================================================================
--- Catalyst-Runtime/5.80/trunk/t/aggregate/unit_core_ctx_attr.t 2010-05-20 17:43:59 UTC (rev 13278)
+++ Catalyst-Runtime/5.80/trunk/t/aggregate/unit_core_ctx_attr.t 2010-05-20 19:46:31 UTC (rev 13279)
@@ -18,9 +18,12 @@
is( $context->hello_lazy, 'hello there', '$context->hello_lazy');
eval { is( $context->hello_notlazy, 'hello there', '$context->hello_notlazy') };
-if ($@) {
- fail('$context->hello_notlazy');
- warn $@;
+TODO: {
+ local $TODO = 'we appear to have a lazy bug';
+ if ($@) {
+ fail('$context->hello_notlazy');
+ warn $@;
+ }
}
done_testing;
More information about the Catalyst-commits
mailing list