1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00
puma--puma/test/test_null_io.rb

46 lines
754 B
Ruby
Raw Normal View History

require "test_helper"
2012-04-30 14:28:22 -04:00
require "puma/null_io"
class TestNullIO < Minitest::Test
2012-04-30 14:28:22 -04:00
attr_accessor :nio
2012-04-30 14:28:22 -04:00
def setup
self.nio = Puma::NullIO.new
end
def test_gets_returns_nil
assert_nil nio.gets
end
def test_each_never_yields
nio.each { raise "never yield" }
end
2012-04-30 14:28:22 -04:00
def test_read_with_no_arguments
assert_equal "", nio.read
end
def test_read_with_nil_length
assert_equal "", nio.read(nil)
end
def test_read_with_zero_length
assert_equal "", nio.read(0)
end
def test_read_with_positive_integer_length
assert_nil nio.read(1)
end
def test_read_with_length_and_buffer
buf = ""
assert_nil nio.read(1, buf)
2012-04-30 14:28:22 -04:00
assert_equal "", buf
end
2016-02-04 23:54:21 -05:00
def test_size
assert_equal 0, nio.size
end
2012-04-30 14:28:22 -04:00
end