1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

call rb_str_modify to make a copy unshared

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66840 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2019-01-17 00:36:08 +00:00
parent d1417ff8fa
commit d25a27abba
3 changed files with 14 additions and 1 deletions

View file

@ -36,7 +36,8 @@ describe "C-API String function" do
before :each do
# Make a completely new copy of the string
# for every example (#dup doesn't cut it).
@str = "abcdefghij"[0..-1]
@str = "abcdefghij"
@s.rb_str_modify(@str)
end
it "reduces the size of the string" do