From 1f8fab93636d0e9d09a84b45673e3db7586d8295 Mon Sep 17 00:00:00 2001 From: gotoyuzo Date: Mon, 10 Jan 2005 07:58:55 +0000 Subject: * test/webrick/utils.rb: resuce LoadError. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7760 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/webrick/utils.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'test/webrick') 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 -- cgit