mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
84e835fe4a
* test/openssl/test_engine.rb: Add a test for it. Thanks to Ippei Obayashi for providing the patch. [ Ruby 1.9 - Bug #5062 ] [ruby-dev:44173] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32604 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
15 lines
238 B
Ruby
15 lines
238 B
Ruby
require_relative 'utils'
|
|
|
|
if defined?(OpenSSL)
|
|
|
|
class OpenSSL::TestEngine < Test::Unit::TestCase
|
|
|
|
def test_engines_free # [ruby-dev:44173]
|
|
OpenSSL::Engine.load
|
|
OpenSSL::Engine.engines
|
|
OpenSSL::Engine.engines
|
|
end
|
|
|
|
end
|
|
|
|
end
|