1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
package Test2::Tools::NoteStderr;
use strict;
use warnings;
use Test2::API qw( context );
use base qw( Exporter );
our @EXPORT_OK = qw( note_stderr );
BEGIN {
eval q{
use Capture::Tiny qw( capture_stderr );
};
if($@)
{
eval q{
sub capture_stderr (&) { $_[0]->() };
};
}
}
sub note_stderr (&)
{
my($code) = @_;
my($stderr, $exception) = capture_stderr {
eval {
$code->();
};
$@;
};
my $ctx = context();
$ctx->note($stderr);
$ctx->release;
die $exception if $exception;
return;
}
1;
|