mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/ruby/test_dir.rb (TestDir::setup): ?c now makes a string.
* lib/test/unit/autorunner.rb (Test::Unit::AutoRunner::initialize): initialize @workdir to stop warning. * lib/drb/drb.rb (DRb::DRbServer::InvokeMethod::perform_without_block): replace funcall by send!. other files in the distribution as well. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13244 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
99ab1fed49
commit
4e183b11ac
12 changed files with 35 additions and 22 deletions
|
@ -9,7 +9,7 @@ class TestUDPSocket < Test::Unit::TestCase
|
|||
def test_connect # [ruby-dev:25045]
|
||||
s = UDPSocket.new
|
||||
host = Object.new
|
||||
class << host; self end.funcall(:define_method, :to_str) {
|
||||
class << host; self end.send!(:define_method, :to_str) {
|
||||
s.close
|
||||
"127.0.0.1"
|
||||
}
|
||||
|
@ -21,7 +21,7 @@ class TestUDPSocket < Test::Unit::TestCase
|
|||
def test_bind # [ruby-dev:25057]
|
||||
s = UDPSocket.new
|
||||
host = Object.new
|
||||
class << host; self end.funcall(:define_method, :to_str) {
|
||||
class << host; self end.send!(:define_method, :to_str) {
|
||||
s.close
|
||||
"127.0.0.1"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue