aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_config.rb
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2015-01-06 16:35:02 -0800
committerZachary Scott <e@zzak.io>2015-01-06 16:35:02 -0800
commit8c20f4435f1e09ff797bf6683c47d4a9d1869bca (patch)
tree44a98a14570834e5ecb89b82ced6f796228fff64 /test/test_config.rb
parent2953dfd4ad925a669110fed1993d6e83b24e420f (diff)
downloadruby-openssl-8c20f4435f1e09ff797bf6683c47d4a9d1869bca.tar.gz
Sync tests with trunk
Diffstat (limited to 'test/test_config.rb')
-rw-r--r--test/test_config.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_config.rb b/test/test_config.rb
index 939cae0b..62f9fabc 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
- pend "DEFAULT_CONFIG_FILE may return a wrong path on your platforms. [Bug #6830]" unless File.readable?(config_file)
+ skip "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
@@ -294,4 +294,4 @@ __EOC__
@it['newsection'] = {'a' => 'b'}
assert_not_equal(@it.sections.sort, c.sections.sort)
end
-end if defined?(OpenSSL)
+end if defined?(OpenSSL::TestUtils)