summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-06-07 02:49:16 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-06-07 02:49:16 +0000
commit590a5218cae2a2b52d732576306090b4bb8ffe93 (patch)
tree47f11727d649de31104c548365de15cdb1b38eb6
parent3f7654f0874cbf4fdcc23441da6cd864803ee671 (diff)
downloadruby-590a5218cae2a2b52d732576306090b4bb8ffe93.tar.gz
ruby-590a5218cae2a2b52d732576306090b4bb8ffe93.tar.xz
ruby-590a5218cae2a2b52d732576306090b4bb8ffe93.zip
skip test if openssl is not available.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8576 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--test/net/http/test_https_proxy.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/net/http/test_https_proxy.rb b/test/net/http/test_https_proxy.rb
index 5b237216f..6332319f2 100644
--- a/test/net/http/test_https_proxy.rb
+++ b/test/net/http/test_https_proxy.rb
@@ -1,4 +1,7 @@
-require 'net/https'
+begin
+ require 'net/https'
+rescue LoadError
+end
require 'test/unit'
class HTTPSProxyTest < Test::Unit::TestCase
@@ -23,5 +26,5 @@ class HTTPSProxyTest < Test::Unit::TestCase
"[ruby-dev:25673]")
}
end
-end
+end if defined?(OpenSSL)