mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
7a6113d6b6
RSTRING_PTR. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30648 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
17 lines
355 B
Ruby
17 lines
355 B
Ruby
require 'test/unit'
|
|
require "-test-/string/string"
|
|
|
|
class Test_StringCStr < Test::Unit::TestCase
|
|
Bug4319 = '[ruby-dev:43094]'
|
|
|
|
def test_embed
|
|
s = Bug::String.new("abcdef")
|
|
s.set_len(3)
|
|
assert_equal(0, s.cstr_term, Bug4319)
|
|
end
|
|
|
|
def test_long
|
|
s = Bug::String.new("abcdef")*100000
|
|
assert_equal(0, s.cstr_term, Bug4319)
|
|
end
|
|
end
|