projects
/
p5sagit/p5-mst-13.2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Move the require './test.pl' to the end of t/comp/hints.t
[p5sagit/p5-mst-13.2.git]
/
t
/
op
/
yadayada.t
1
#!./perl
2
3
BEGIN {
4
chdir 't' if -d 't';
5
@INC = '../lib';
6
require './test.pl';
7
}
8
9
use strict;
10
11
plan 1;
12
13
my $err = "Unimplemented at $0 line " . ( __LINE__ + 2 ) . ".\n";
14
15
eval { ... };
16
17
is $@, $err;