1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/openssl/test_fips.rb

15 lines
206 B
Ruby
Raw Normal View History

require_relative 'utils'
if defined?(OpenSSL)
class OpenSSL::TestFIPS < Test::Unit::TestCase
def test_fips_mode_is_reentrant
OpenSSL.fips_mode = false
OpenSSL.fips_mode = false
end
end
end