ruby-changes:44505
From: nobu <ko1@a...>
Date: Sat, 5 Nov 2016 16:10:09 +0900 (JST)
Subject: [ruby-changes:44505] nobu:r56578 (trunk): openssl/ut_eof.rb: rename TestEOF
nobu 2016-11-05 16:10:05 +0900 (Sat, 05 Nov 2016) New Revision: 56578 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=56578 Log: openssl/ut_eof.rb: rename TestEOF * test/openssl/ut_eof.rb (OpenSSL::TestEOF): move TestEOF module under OpenSSL to get rid of conflict with test/ruby/ut_eof.rb. Modified files: trunk/test/openssl/test_pair.rb trunk/test/openssl/ut_eof.rb Index: test/openssl/ut_eof.rb =================================================================== --- test/openssl/ut_eof.rb (revision 56577) +++ test/openssl/ut_eof.rb (revision 56578) @@ -1,7 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/test/openssl/ut_eof.rb#L1 # frozen_string_literal: false require 'test/unit' -module TestEOF +module OpenSSL::TestEOF def test_eof_0 open_file("") {|f| assert_equal("", f.read(0)) Index: test/openssl/test_pair.rb =================================================================== --- test/openssl/test_pair.rb (revision 56577) +++ test/openssl/test_pair.rb (revision 56578) @@ -463,25 +463,25 @@ module OpenSSL::TestPairM https://github.com/ruby/ruby/blob/trunk/test/openssl/test_pair.rb#L463 end class OpenSSL::TestEOF1 < OpenSSL::TestCase - include TestEOF + include OpenSSL::TestEOF include OpenSSL::SSLPair include OpenSSL::TestEOF1M end class OpenSSL::TestEOF1LowlevelSocket < OpenSSL::TestCase - include TestEOF + include OpenSSL::TestEOF include OpenSSL::SSLPairLowlevelSocket include OpenSSL::TestEOF1M end class OpenSSL::TestEOF2 < OpenSSL::TestCase - include TestEOF + include OpenSSL::TestEOF include OpenSSL::SSLPair include OpenSSL::TestEOF2M end class OpenSSL::TestEOF2LowlevelSocket < OpenSSL::TestCase - include TestEOF + include OpenSSL::TestEOF include OpenSSL::SSLPairLowlevelSocket include OpenSSL::TestEOF2M end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/