/usr/share/doc/perl-Test-Simple/t/Legacy/Builder
#!/usr/bin/perl -w # Testing to make sure Test::Builder doesn't accidentally store objects # passed in as test arguments. BEGIN { if( $ENV{PERL_CORE} ) { chdir 't'; @INC = '../lib'; } } use Test::More tests => 4; package Foo; my $destroyed = 0; sub new { bless {}, shift } sub DESTROY { $destroyed++; } package main; for (1..3) { ok(my $foo = Foo->new, 'created Foo object'); } is $destroyed, 3, "DESTROY called 3 times";
.
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