4 chdir '..' if -d '../pod' && -d '../t';
9 ######################### We start with some black magic to print on failure.
11 # Change 1..1 below to 1..last_test_to_print .
12 # (It may become useful if the test is moved to ./t subdirectory.)
16 use vars qw($Test_Num $Total_tests);
19 BEGIN { $| = 1; $Test_Num = 1 }
20 END {print "not ok $Test_Num\n" unless $loaded;}
21 print "1..$Total_tests\n";
22 BEGIN { require diagnostics; } # Don't want diagnostics' noise yet.
24 ok($loaded, 'compile');
25 ######################### End of black magic.
28 my($test, $name) = shift;
29 print "not " unless $test;
31 print " - $name" if defined $name;
37 # Change this to your # of ok() calls + 1
38 BEGIN { $Total_tests = 1 }