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_iobuffer.rb

38 lines
774 B
Ruby
Raw Normal View History

require_relative "helper"
require "puma/io_buffer"
class TestIOBuffer < Minitest::Test
attr_accessor :iobuf
def setup
self.iobuf = Puma::IOBuffer.new
end
def test_initial_size
2020-02-27 14:50:34 -05:00
assert_equal 0, iobuf.size
end
def test_append_op
iobuf << "abc"
assert_equal "abc", iobuf.to_s
iobuf << "123"
assert_equal "abc123", iobuf.to_s
2020-02-27 14:50:34 -05:00
assert_equal 6, iobuf.size
end
def test_append
expected = "mary had a little lamb"
iobuf.append("mary", " ", "had ", "a little", " lamb")
assert_equal expected, iobuf.to_s
2020-02-27 14:50:34 -05:00
assert_equal expected.length, iobuf.size
end
def test_reset
iobuf << "content"
assert_equal "content", iobuf.to_s
iobuf.reset
2020-02-27 14:50:34 -05:00
assert_equal 0, iobuf.size
assert_equal "", iobuf.to_s
end
end