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

32 lines
571 B
Ruby
Raw Normal View History

2012-04-30 14:28:22 -04:00
require 'puma/null_io'
require 'test/unit'
class TestNullIO < Test::Unit::TestCase
attr_accessor :nio
def setup
self.nio = Puma::NullIO.new
end
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)
assert_equal "", buf
end
end