aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_ssl.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_ssl.rb
parentc9617a6e08790d831afe0be982ead64601848ee1 (diff)
downloadruby-openssl-d0f098b797eee0abe740fbab310cdca9abe5252e.tar.gz
use pend instead of skip
Diffstat (limited to 'test/test_ssl.rb')
-rw-r--r--test/test_ssl.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_ssl.rb b/test/test_ssl.rb
index ddc3be5b..778dd8bc 100644
--- a/test/test_ssl.rb
+++ b/test/test_ssl.rb
@@ -20,7 +20,7 @@ class OpenSSL::TestSSL < OpenSSL::SSLTestCase
end if defined?(OpenSSL::SSL::OP_NO_COMPRESSION)
def test_not_started_session
- skip "non socket argument of SSLSocket.new is not supported on this platform" if /mswin|mingw/ =~ RUBY_PLATFORM
+ pend "non socket argument of SSLSocket.new is not supported on this platform" if /mswin|mingw/ =~ RUBY_PLATFORM
open(__FILE__) do |f|
assert_nil OpenSSL::SSL::SSLSocket.new(f).cert
end