summaryrefslogtreecommitdiff
path: root/cpan/Test-Simple/t/Legacy/Tester/tbt_09do_script.pl
blob: 590a03b085e8ec36ccde9b76ceebb93a827faf6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

use strict;
use warnings;

isnt($0, __FILE__, 'code is not executing directly');

test_out("not ok 1 - one");
test_fail(+1);
ok(0,"one");
test_test('test_fail caught fail message inside a do');

1;