From 4db96fe42cbf48449ad9528624d5760d65f3e818 Mon Sep 17 00:00:00 2001 From: akr Date: Wed, 18 Jul 2012 10:42:40 +0000 Subject: [PATCH] * test/openssl/test_config.rb: remove temporally files early. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36443 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ test/openssl/test_config.rb | 9 +++++++++ 2 files changed, 13 insertions(+) diff --git a/ChangeLog b/ChangeLog index d8812447bb..5b535fbdf2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed Jul 18 19:41:19 2012 Tanaka Akira + + * test/openssl/test_config.rb: remove temporally files early. + Wed Jul 18 17:45:26 2012 Nobuyoshi Nakada * error.c (rb_builtin_type_name): map by index. diff --git a/test/openssl/test_config.rb b/test/openssl/test_config.rb index 77f89b2bd6..2e29883c00 100644 --- a/test/openssl/test_config.rb +++ b/test/openssl/test_config.rb @@ -12,9 +12,14 @@ dir = ./demoCA certs = ./certs __EOD__ file.close + @tmpfile = file @it = OpenSSL::Config.new(file.path) end + def teardown + @tmpfile.unlink + end + def test_constants assert(defined?(OpenSSL::Config::DEFAULT_CONFIG_FILE)) assert_nothing_raised do @@ -119,6 +124,8 @@ __EOC__ c = OpenSSL::Config.load(file.path) assert_equal("[ default ]\n\n", c.to_s) assert_equal(['default'], c.sections) + ensure + file.unlink if file end def test_initialize @@ -133,6 +140,8 @@ __EOC__ c = OpenSSL::Config.new(file.path) assert_equal("[ default ]\n\n", c.to_s) assert_equal(['default'], c.sections) + ensure + file.unlink if file end def test_initialize_with_example_file