From 36cfaa805294b1f2d00f3eeadf03c179a387d568 Mon Sep 17 00:00:00 2001 From: shyouhei Date: Mon, 27 Sep 2010 06:28:59 +0000 Subject: * test/net/imap/test_imap.rb: resurrection of r29259. this change depends on minitest 1.7.1. * lib/test/unit/assertions.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29348 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/net/imap/test_imap.rb | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) (limited to 'test/net') diff --git a/test/net/imap/test_imap.rb b/test/net/imap/test_imap.rb index 06ecca0f00..8ccec642c0 100644 --- a/test/net/imap/test_imap.rb +++ b/test/net/imap/test_imap.rb @@ -49,9 +49,13 @@ class IMAPTest < Test::Unit::TestCase if defined?(OpenSSL) assert_raise(OpenSSL::SSL::SSLError) do imaps_test do |port| - Net::IMAP.new("localhost", - :port => port, - :ssl => true) + begin + Net::IMAP.new("localhost", + :port => port, + :ssl => true) + rescue SystemCallError + skip $! + end end end end @@ -61,9 +65,13 @@ class IMAPTest < Test::Unit::TestCase if defined?(OpenSSL) assert_nothing_raised do imaps_test do |port| - Net::IMAP.new("localhost", - :port => port, - :ssl => { :ca_file => CA_FILE }) + begin + Net::IMAP.new("localhost", + :port => port, + :ssl => { :ca_file => CA_FILE }) + rescue SystemCallError + skip $! + end end end end @@ -104,6 +112,8 @@ class IMAPTest < Test::Unit::TestCase imap end end + rescue SystemCallError + skip $! ensure if imap && !imap.disconnected? imap.disconnect -- cgit v1.2.3