xref: /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/Builder/done_testing.t (revision 46035553bfdd96e63c94e32da0210227ec2e3cf1)
1#!/usr/bin/perl -w
2
3use strict;
4
5use Test::Builder;
6
7my $tb = Test::Builder->new;
8$tb->level(0);
9
10$tb->ok(1, "testing done_testing() with no arguments");
11$tb->ok(1, "  another test so we're not testing just one");
12$tb->done_testing();
13