1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/io-wait/wait_writable_spec.rb
2022-09-28 18:37:17 +02:00

18 lines
525 B
Ruby

require_relative '../../spec_helper'
require 'io/wait'
describe "IO#wait_writable" do
it "waits for the IO to become writable with no timeout" do
STDOUT.wait_writable.should == STDOUT
end
it "waits for the IO to become writable with the given timeout" do
STDOUT.wait_writable(1).should == STDOUT
end
it "waits for the IO to become writable with the given large timeout" do
# Represents one year and is larger than a 32-bit int
STDOUT.wait_writable(365 * 24 * 60 * 60).should == STDOUT
end
end