X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Flive_component_controller_context_closure.t;h=69fa5046d1b49ff6ba222d62a6c77dc5722731f6;hp=172f91e1da1913481ef06a1b8a0bb09f9e580c53;hb=cc7738c0fb5c4b5dc601734e7b525391d81d6639;hpb=fbbed79e68b58b0dad0457a14e6d6bad87166769 diff --git a/t/live_component_controller_context_closure.t b/t/live_component_controller_context_closure.t index 172f91e..69fa504 100644 --- a/t/live_component_controller_context_closure.t +++ b/t/live_component_controller_context_closure.t @@ -3,21 +3,27 @@ use warnings; use Test::More; BEGIN { - unless (eval 'use CatalystX::LeakChecker 0.03; 1') { - plan skip_all => 'CatalystX::LeakChecker 0.03 required for this test'; + unless (eval 'use CatalystX::LeakChecker 0.05; 1') { + plan skip_all => 'CatalystX::LeakChecker 0.05 required for this test'; } - plan tests => 4; + plan tests => 6; } use FindBin; use lib "$FindBin::Bin/lib"; +BEGIN { $::setup_leakchecker = 1 } +local $SIG{__WARN__} = sub { return if $_[0] =~ /Unhandled type: (GLOB|REGEXP)/; warn $_[0] }; use Catalyst::Test 'TestApp'; { my ($resp, $ctx) = ctx_request('/contextclosure/normal_closure'); ok($resp->is_success); + #is($ctx->count_leaks, 1); + # FIXME: find out why this changed from 1 to 2 after 52af51596d + # ^^ probably has something to do with env being in Engine and Request - JNAP + # ^^ I made the env in Engine a weak ref, should help until we can remove it is($ctx->count_leaks, 1); } @@ -26,3 +32,9 @@ use Catalyst::Test 'TestApp'; ok($resp->is_success); is($ctx->count_leaks, 0); } + +{ + my ($resp, $ctx) = ctx_request('/contextclosure/non_closure'); + ok($resp->is_success); + is($ctx->count_leaks, 0); +}