mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update to ruby/spec@875a09e
This commit is contained in:
parent
a06301b103
commit
5c276e1cc9
1247 changed files with 5316 additions and 5028 deletions
|
@ -18,7 +18,7 @@ describe 'BasicSocket#sendmsg_nonblock' do
|
|||
|
||||
describe 'without a destination address' do
|
||||
it "raises #{SocketSpecs.dest_addr_req_error}" do
|
||||
lambda { @client.sendmsg_nonblock('hello') }.should raise_error(SocketSpecs.dest_addr_req_error)
|
||||
-> { @client.sendmsg_nonblock('hello') }.should raise_error(SocketSpecs.dest_addr_req_error)
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -70,7 +70,7 @@ describe 'BasicSocket#sendmsg_nonblock' do
|
|||
|
||||
it 'sends the message to the given address instead' do
|
||||
@client.sendmsg_nonblock('hello', 0, @alt_server.getsockname).should == 5
|
||||
lambda { @server.recv(5) }.should block_caller
|
||||
-> { @server.recv(5) }.should block_caller
|
||||
@alt_server.recv(5).should == 'hello'
|
||||
end
|
||||
end
|
||||
|
@ -94,7 +94,7 @@ describe 'BasicSocket#sendmsg_nonblock' do
|
|||
end
|
||||
|
||||
it 'raises IO::WaitWritable when the underlying buffer is full' do
|
||||
lambda {
|
||||
-> {
|
||||
10.times { @client.sendmsg_nonblock('hello' * 1_000_000) }
|
||||
}.should raise_error(IO::WaitWritable)
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue