Make sure that all test files are gone before starting the tests, or
[openssl.git] / perl / t / 02-version.t
1
2 print "1..1\n";
3 use OpenSSL;
4 if ($OpenSSL::VERSION ne '') {
5     print "ok 1\n";
6 }
7 else {
8     print "not ok 1\n";
9 }
10