1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

UNIXServer.new("a\0b") test removed because

UNIXServer.new accepts NUL as abstruct unix sockets.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13552 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2007-09-28 15:58:34 +00:00
parent ac835db6c8
commit 228728325e

View file

@ -118,7 +118,6 @@ class TestUNIXSocket < Test::Unit::TestCase
def test_nul
assert_raise(ArgumentError) { Socket.sockaddr_un("a\0b") }
assert_raise(ArgumentError) { UNIXServer.new("a\0b") }
end
def test_dgram_pair