The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

# Test that the random seed is displayed when tests are run but the plan was forgotten

use strict;
use warnings;

# Ensures that our END block will come after theirs
require Test::Random;
require Test::More;
Test::More->import;

# This is going to do the real testing
my $test = Test::Builder->create;

# This is going to be trapped
my $tb = Test::More->builder->new;

my %output = (
    tap  => '',
    err  => '',
    todo => ''
);
$tb->output( \$output{tap} );
$tb->failure_output( \$output{err} );
$tb->todo_output( \$output{todo} );

pass("Passing test");

END {
    $test->plan( tests => 2 );
    $test->unlike( $output{tap}, qr/TEST_RANDOM_SEED/ );
    $test->like  ( $output{err}, qr/TEST_RANDOM_SEED/ );
}