2017-12-02 02:09:16 -05:00
|
|
|
# frozen_string_literal: false
|
|
|
|
require 'test/unit'
|
|
|
|
require '-test-/string'
|
|
|
|
|
|
|
|
class Test_StringExternalNew < Test::Unit::TestCase
|
2017-12-03 07:06:16 -05:00
|
|
|
def test_buf_new
|
|
|
|
assert_operator(0, :<=, Bug::String.capacity(Bug::String.buf_new(0)))
|
|
|
|
assert_operator(127, :<=, Bug::String.capacity(Bug::String.buf_new(127)))
|
|
|
|
assert_operator(128, :<=, Bug::String.capacity(Bug::String.buf_new(128)))
|
|
|
|
end
|
|
|
|
|
2017-12-02 02:09:16 -05:00
|
|
|
def test_external_new_with_enc
|
|
|
|
Encoding.list.each do |enc|
|
|
|
|
assert_equal(enc, Bug::String.external_new(0, enc).encoding)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|