summaryrefslogtreecommitdiffstats
path: root/test/openssl
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-26 12:18:04 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-26 12:18:04 +0000
commitc461a3ffa3906e624cd1f10f91a646fc82ff70c3 (patch)
treeeee9a7d9ddc3cab9ce8412f63a9aec5aeaa95fe6 /test/openssl
parenta1044c674a4d5c605ae0956755bdb9e73f227d5f (diff)
downloadruby-c461a3ffa3906e624cd1f10f91a646fc82ff70c3.tar.gz
ruby-c461a3ffa3906e624cd1f10f91a646fc82ff70c3.tar.xz
ruby-c461a3ffa3906e624cd1f10f91a646fc82ff70c3.zip
* test/openssl/test_config.rb (OpenSSL::TestConfig): new test case.
test for r25017. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25934 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/openssl')
-rw-r--r--test/openssl/test_config.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/openssl/test_config.rb b/test/openssl/test_config.rb
new file mode 100644
index 000000000..9578bb254
--- /dev/null
+++ b/test/openssl/test_config.rb
@@ -0,0 +1,15 @@
+require 'openssl'
+require "test/unit"
+
+class OpenSSL::TestConfig < Test::Unit::TestCase
+ def test_freeze
+ c = OpenSSL::Config.new
+ c['foo'] = [['key', 'value']]
+ c.freeze
+
+ # [ruby-core:18377]
+ assert_raise(RuntimeError, /frozen/) do
+ c['foo'] = [['key', 'wrong']]
+ end
+ end
+end