mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
test_client.rb: load openssl
* test/xmlrpc/test_client.rb: try loading openssl to fix autoloading constant. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41506 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
de8ca8a138
commit
42a086502b
1 changed files with 4 additions and 0 deletions
|
@ -1,6 +1,10 @@
|
|||
require 'minitest/autorun'
|
||||
require 'xmlrpc/client'
|
||||
require 'net/http'
|
||||
begin
|
||||
require 'openssl'
|
||||
rescue LoadError
|
||||
end
|
||||
|
||||
module XMLRPC
|
||||
class ClientTest < MiniTest::Unit::TestCase
|
||||
|
|
Loading…
Reference in a new issue