skip test if db doesn't have null key support
[p5sagit/p5-mst-13.2.git] / t / lib / findbin.t
CommitLineData
1a3850a5 1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
93430cb4 5 unshift @INC, '../lib';
1a3850a5 6}
7
8print "1..1\n";
9
10use FindBin qw($Bin);
11
55497cff 12print "not " unless $Bin =~ m,t[/.]lib\]?$,;
1a3850a5 13print "ok 1\n";