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
committerSHIBATA Hiroshi <hsbt@ruby-lang.org>2014-10-29 15:32:12 +0900
commitd0f098b797eee0abe740fbab310cdca9abe5252e (patch)
tree3ac38aa3c8ca725352dbbbc93d77673eae75f631 /test/test_config.rb
parentc9617a6e08790d831afe0be982ead64601848ee1 (diff)
downloadruby-openssl-d0f098b797eee0abe740fbab310cdca9abe5252e.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 4ad90c43..939cae0b 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