#!./perl
# quickie tests to see if h2ph actually runs and does more or less what is
# expected
BEGIN {
chdir 't' if -d 't';
}
exit 0;
}
print "1..2\n";
# quickly compare two text files
local ($/, $A, $B);
$A cmp $B;
}
# does it run?
# does it work? well, does it do what we expect? :-)
# cleanup - should this be in an END block?