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

use strict;

use Test::Builder;

my $tb = Test::Builder->new;
$tb->level(0);

$tb->ok(1, "testing done_testing() with no arguments");
$tb->ok(1, "  another test so we're not testing just one");
$tb->done_testing();