Subject: | Leaks in Test::More 1.001009 are detected |
It's problematic to run tests within a no_leaks_ok call, because of Leaks in Test::More.
It would be nice to have an option to at least ignore leaks in Test::Most.
Sample code:
use Test::More 0.88;
use Test::LeakTrace;
no_leaks_ok {
pass 'outside subtest';
};
done_testing;