File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ def teardown
23
23
def test_constants
24
24
assert ( defined? ( OpenSSL ::Config ::DEFAULT_CONFIG_FILE ) )
25
25
config_file = OpenSSL ::Config ::DEFAULT_CONFIG_FILE
26
- skip "DEFAULT_CONFIG_FILE may return a wrong path on your platforms. [Bug #6830]" unless File . readable? ( config_file )
26
+ pend "DEFAULT_CONFIG_FILE may return a wrong path on your platforms. [Bug #6830]" unless File . readable? ( config_file )
27
27
assert_nothing_raised do
28
28
OpenSSL ::Config . load ( config_file )
29
29
end
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ def test_ctx_setup_no_compression
20
20
end if defined? ( OpenSSL ::SSL ::OP_NO_COMPRESSION )
21
21
22
22
def test_not_started_session
23
- skip "non socket argument of SSLSocket.new is not supported on this platform" if /mswin|mingw/ =~ RUBY_PLATFORM
23
+ pend "non socket argument of SSLSocket.new is not supported on this platform" if /mswin|mingw/ =~ RUBY_PLATFORM
24
24
open ( __FILE__ ) do |f |
25
25
assert_nil OpenSSL ::SSL ::SSLSocket . new ( f ) . cert
26
26
end
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ def test_sign_and_verify_rsa_dss1
138
138
req . version = 1
139
139
assert_equal ( false , req . verify ( @rsa1024 ) )
140
140
rescue OpenSSL ::X509 ::RequestError
141
- skip
141
+ pend
142
142
end
143
143
144
144
def test_sign_and_verify_dsa_md5
You can’t perform that action at this time.
0 commit comments