#!./perl
chdir 't' if -d 't';
}
else {
}
}
if(-d "lib" && -f "TEST") {
print "1..0\n";
exit 0;
}
}
}
print "1..13\n";
binmode $tst;
# its a nop unless it matters. Was only if ($^O eq 'MSWin32' or $^O eq 'dos'); if ($tst->eof) { print "not ok 1\n"; } else { print "ok 1\n"; }
$x = 0;
}
if ($x == 1) { print "ok 2\n"; } else { print "not ok 2\n"; }
unless (eof) { print "not ok 3\n"; } else { print "ok 3\n"; }
if ($tst->seek(0,0)) { print "ok 4\n"; } else { print "not ok 4\n"; }
if (eof) { print "not ok 5\n"; } else { print "ok 5\n"; }
if ($secondpos == tell) { print "ok 7\n"; } else { print "not ok 7\n"; }
if ($tst->seek(0,1)) { print "ok 8\n"; } else { print "not ok 8\n"; }
if ($tst->eof) { print "not ok 9\n"; } else { print "ok 9\n"; }
if ($secondpos == tell) { print "ok 10\n"; } else { print "not ok 10\n"; }
if ($tst->seek(0,2)) { print "ok 11\n"; } else { print "not ok 11\n"; }
unless (eof) { print "not ok 13\n"; } else { print "ok 13\n"; }