1#!/usr/bin/perl 2 3use strict; 4use warnings; 5 6isnt($0, __FILE__, 'code is not executing directly'); 7 8test_out("not ok 1 - one"); 9test_fail(+1); 10ok(0,"one"); 11test_test('test_fail caught fail message inside a do'); 12 131; 14