summaryrefslogtreecommitdiffstats
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
commit1f8fab93636d0e9d09a84b45673e3db7586d8295 (patch)
tree8feb8850223c80f792e33873f82ca9354419269c /test/webrick
parentccc774408ea89527727f674b93c725455cc0d83c (diff)
downloadruby-1f8fab93636d0e9d09a84b45673e3db7586d8295.tar.gz
ruby-1f8fab93636d0e9d09a84b45673e3db7586d8295.tar.xz
ruby-1f8fab93636d0e9d09a84b45673e3db7586d8295.zip
* test/webrick/utils.rb: resuce LoadError.
git-svn-id: http://svn.ruby-lang.org/repos/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 adb0d106e..f1e6e4b02 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