From: Nicholas Clark Date: Fri, 9 Oct 2009 12:17:29 +0000 (+0200) Subject: Don't use require in comp/our.t, as require isn't tested yet. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d96222f273529fc287bfeb19af28d5217f3f74aa;p=p5sagit%2Fp5-mst-13.2.git Don't use require in comp/our.t, as require isn't tested yet. Emit TAP directly. --- diff --git a/t/comp/our.t b/t/comp/our.t index 69fbb03..d271fe5 100644 --- a/t/comp/our.t +++ b/t/comp/our.t @@ -1,12 +1,27 @@ #!./perl -BEGIN { - chdir 't'; - @INC = '../lib'; - require './test.pl'; -} - print "1..7\n"; +my $test = 0; + +sub is { + my ($got, $expect, $name) = @_; + $test = $test + 1; + if (defined $got && $got eq $expect) { + print "ok $test - $name\n"; + return 1; + } + + print "not ok $test - $name\n"; + my @caller = caller(0); + print "# Failed test at $caller[1] line $caller[2]\n"; + if (defined $got) { + print "# Got '$got'\n"; + } else { + print "# Got undef\n"; + } + print "# Expected $expect\n"; + return; +} { package TieAll;