mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
16 lines
238 B
Ruby
16 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
|