summaryrefslogtreecommitdiffstats
path: root/test/socket/test_udp.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-08-24 09:57:53 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-08-24 09:57:53 +0000
commit320553cda48fac77e8cc2284b10b0f091a51722e (patch)
treea6cd8b6ecfb5e2f52f04cbbe29e4fd9f3adbd59e /test/socket/test_udp.rb
parenta9d73d360df0d3bc6b738cb10858ae63f24f847a (diff)
downloadruby-320553cda48fac77e8cc2284b10b0f091a51722e.tar.gz
ruby-320553cda48fac77e8cc2284b10b0f091a51722e.tar.xz
ruby-320553cda48fac77e8cc2284b10b0f091a51722e.zip
* 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: http://svn.ruby-lang.org/repos/ruby/trunk@13244 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/socket/test_udp.rb')
-rw-r--r--test/socket/test_udp.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/socket/test_udp.rb b/test/socket/test_udp.rb
index 22eee783d..654b50657 100644
--- a/test/socket/test_udp.rb
+++ b/test/socket/test_udp.rb
@@ -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"
}