/usr/share/doc/perl-Test-Simple/t/Legacy/Builder
#!/usr/bin/perl -w BEGIN { if( $ENV{PERL_CORE} ) { chdir 't'; @INC = ('../lib', 'lib'); } else { unshift @INC, 't/lib'; } } use Test::More tests => 7; use Test::Builder; use Test::Builder::NoOutput; my $more_tb = Test::More->builder; isa_ok $more_tb, 'Test::Builder'; is $more_tb, Test::More->builder, 'create does not interfere with ->builder'; is $more_tb, Test::Builder->new, ' does not interfere with ->new'; { my $new_tb = Test::Builder::NoOutput->create; isa_ok $new_tb, 'Test::Builder'; isnt $more_tb, $new_tb, 'Test::Builder->create makes a new object'; $new_tb->plan(tests => 1); $new_tb->ok(1, "a test"); is $new_tb->read, <<'OUT'; 1..1 ok 1 - a test OUT } pass("Changing output() of new TB doesn't interfere with singleton");
.
Edit
..
Edit
Builder.t
Edit
carp.t
Edit
create.t
Edit
current_test.t
Edit
current_test_without_plan.t
Edit
details.t
Edit
done_testing.t
Edit
done_testing_double.t
Edit
done_testing_plan_mismatch.t
Edit
done_testing_with_no_plan.t
Edit
done_testing_with_number.t
Edit
done_testing_with_plan.t
Edit
fork_with_new_stdout.t
Edit
has_plan.t
Edit
has_plan2.t
Edit
is_fh.t
Edit
is_passing.t
Edit
maybe_regex.t
Edit
no_diag.t
Edit
no_ending.t
Edit
no_header.t
Edit
no_plan_at_all.t
Edit
ok_obj.t
Edit
output.t
Edit
reset.t
Edit
reset_outputs.t
Edit
try.t
Edit