Skip to content

Instantly share code, notes, and snippets.

@lestrrat
Created December 1, 2010 06:09
Show Gist options
  • Save lestrrat/723051 to your computer and use it in GitHub Desktop.
Save lestrrat/723051 to your computer and use it in GitHub Desktop.
no warnings 'redefine';
my $code = \&Test::Builder::child;
*Test::Builder::child = sub {
my $builder = $code->(@_);
binmode $builder->output, ":utf8";
binmode $builder->failure_output, ":utf8";
binmode $builder->todo_output, ":utf8";
return $builder;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment