3 # Test what happens when no plan is delcared and done_testing() is not seen
9 use Test::Builder::NoOutput;
11 my $Test = Test::Builder->new;
13 $Test->plan( tests => 1 );
15 my $tb = Test::Builder::NoOutput->create;
19 $tb->ok(1, "just a test");
20 $tb->ok(1, " and another");
24 $Test->is_eq($tb->read, <<'END', "proper behavior when no plan is seen");
27 # Tests were run but no plan was declared and done_testing() was not seen.