summaryrefslogtreecommitdiff
path: root/test/webrick
diff options
context:
space:
mode:
authorgotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-01-10 07:58:55 +0000
committergotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-01-10 07:58:55 +0000
commit083475a1f3a683bc9378c19555fe0cde99d60bc6 (patch)
tree8feb8850223c80f792e33873f82ca9354419269c /test/webrick
parent3a1ee90cbe0161629b123eb5d0ea0ffab8840380 (diff)
* test/webrick/utils.rb: resuce LoadError.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7760 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/webrick')
-rw-r--r--test/webrick/utils.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/webrick/utils.rb b/test/webrick/utils.rb
index adb0d106e7..f1e6e4b027 100644
--- a/test/webrick/utils.rb
+++ b/test/webrick/utils.rb
@@ -1,5 +1,8 @@
require "webrick"
-require "webrick/https"
+begin
+ require "webrick/https"
+rescue LoadError
+end
require "webrick/httpproxy"
module TestWEBrick