1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/socket/test_udp.rb
matz 4e183b11ac * 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
2007-08-24 09:57:53 +00:00

32 lines
630 B
Ruby

begin
require "socket"
require "test/unit"
rescue LoadError
end
class TestUDPSocket < Test::Unit::TestCase
def test_connect # [ruby-dev:25045]
s = UDPSocket.new
host = Object.new
class << host; self end.send!(:define_method, :to_str) {
s.close
"127.0.0.1"
}
assert_raise(IOError) {
s.connect(host, 1)
}
end
def test_bind # [ruby-dev:25057]
s = UDPSocket.new
host = Object.new
class << host; self end.send!(:define_method, :to_str) {
s.close
"127.0.0.1"
}
assert_raise(IOError) {
s.bind(host, 2000)
}
end
end if defined?(UDPSocket)