diff options
Diffstat (limited to 'crypto/openssl/perl/t/02-version.t')
-rw-r--r-- | crypto/openssl/perl/t/02-version.t | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/crypto/openssl/perl/t/02-version.t b/crypto/openssl/perl/t/02-version.t new file mode 100644 index 0000000..8b5f6a0 --- /dev/null +++ b/crypto/openssl/perl/t/02-version.t @@ -0,0 +1,10 @@ + +print "1..1\n"; +use OpenSSL; +if ($OpenSSL::VERSION ne '') { + print "ok 1\n"; +} +else { + print "not ok 1\n"; +} + |