summaryrefslogtreecommitdiff
path: root/cpan/Test-Simple/t/Builder/done_testing_with_no_plan.t
blob: ff5f40c1975d260455254feb58772265c787707e (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl -w

use strict;

use Test::Builder;

my $tb = Test::Builder->new;
$tb->plan( "no_plan" );
$tb->ok(1);
$tb->ok(1);
$tb->done_testing(2);