HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-3.0.2/spec/ruby/library/openssl/config/freeze_spec.rb
require_relative '../../../spec_helper'
require_relative '../shared/constants'

require 'openssl'

version_is(OpenSSL::VERSION, ""..."2.2") do
  describe "OpenSSL::Config#freeze" do
    it "needs to be reviewed for completeness"

    it "freezes" do
      c = OpenSSL::Config.new
      -> {
        c['foo'] = [ ['key', 'value'] ]
      }.should_not raise_error
      c.freeze
      c.frozen?.should be_true
      -> {
        c['foo'] = [ ['key', 'value'] ]
      }.should raise_error(TypeError)
    end
  end
end