When from_psgi_response, a bug when headers are already output and charset is set...
[catagits/Catalyst-Runtime.git] / t / live_component_controller_context_closure.t
index 2d4b894..69fa504 100644 (file)
@@ -14,12 +14,16 @@ use FindBin;
 use lib "$FindBin::Bin/lib";
 
 BEGIN { $::setup_leakchecker = 1 }
-local $SIG{__WARN__} = sub { return if $_[0] =~ /Unhandled type: GLOB/; warn $_[0] };
+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);
 }