diff options
author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-01-10 07:58:55 +0000 |
---|---|---|
committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-01-10 07:58:55 +0000 |
commit | 1f8fab93636d0e9d09a84b45673e3db7586d8295 (patch) | |
tree | 8feb8850223c80f792e33873f82ca9354419269c /test/webrick | |
parent | ccc774408ea89527727f674b93c725455cc0d83c (diff) | |
download | ruby-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.rb | 5 |
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 |