aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_config.rb
diff options
context:
space:
mode:
authorSHIBATA Hiroshi <hsbt@ruby-lang.org>2014-10-29 15:32:12 +0900
committerZachary Scott <e@zzak.io>2015-01-06 16:55:45 -0800
commit424244baf2d0b8942fc9196d2072c9a848b0a18c (patch)
tree3d1d832db2a92a42e34241a7dd3364fe56a83213 /test/test_config.rb
parentf1e97a861c0075625cf22203c270a07d3f668ca3 (diff)
downloadruby-openssl-424244baf2d0b8942fc9196d2072c9a848b0a18c.tar.gz
use pend instead of skip
Diffstat (limited to 'test/test_config.rb')
-rw-r--r--test/test_config.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_config.rb b/test/test_config.rb
index 62f9fabc..4ceb7465 100644
--- a/test/test_config.rb
+++ b/test/test_config.rb
@@ -23,7 +23,7 @@ __EOD__
def test_constants
assert(defined?(OpenSSL::Config::DEFAULT_CONFIG_FILE))
config_file = OpenSSL::Config::DEFAULT_CONFIG_FILE
- skip "DEFAULT_CONFIG_FILE may return a wrong path on your platforms. [Bug #6830]" unless File.readable?(config_file)
+ pend "DEFAULT_CONFIG_FILE may return a wrong path on your platforms. [Bug #6830]" unless File.readable?(config_file)
assert_nothing_raised do
OpenSSL::Config.load(config_file)
end