summaryrefslogtreecommitdiff
path: root/test/xmlrpc
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-19 16:48:05 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-19 16:48:05 +0000
commit86761931c8879108e35ed9af3d53280dcf76f0e6 (patch)
tree64549c83fc8be1ef7d6f54b237973c8e7a324f63 /test/xmlrpc
parent5913c969f14d27807e785c119eb484830f7bb697 (diff)
* test/xmlrpc/test_webrick_server.rb : move `requrie "webrick/https"'
into #setup_http_server mohtod to avoid soap test errors. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7324 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/xmlrpc')
-rw-r--r--test/xmlrpc/test_webrick_server.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/xmlrpc/test_webrick_server.rb b/test/xmlrpc/test_webrick_server.rb
index 26d57abd77..d12a528ecc 100644
--- a/test/xmlrpc/test_webrick_server.rb
+++ b/test/xmlrpc/test_webrick_server.rb
@@ -1,6 +1,5 @@
require 'test/unit'
require 'webrick'
-require 'webrick/https'
require File.join(File.dirname(__FILE__), 'webrick_testing')
require "xmlrpc/server"
require 'xmlrpc/client'
@@ -34,6 +33,7 @@ class Test_Webrick < Test::Unit::TestCase
end
def setup_http_server(port, use_ssl)
+ require 'webrick/https'
start_server(
:Port => port,
:SSLEnable => use_ssl,