summaryrefslogtreecommitdiff
path: root/test/openssl/test_engine.rb
blob: 9258775bd36cb5a161788be48c6e9af6c26d919b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
    OpenSSL::Engine.cleanup # [ruby-core:40669]
  end

end

end