1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
This commit is contained in:
Benoit Daloze 2019-04-28 23:20:11 +02:00
parent 994833085a
commit 79671ec57e
135 changed files with 4415 additions and 4885 deletions

View file

@ -15,10 +15,8 @@ describe "String#reverse" do
"m".taint.reverse.tainted?.should == true
end
with_feature :encoding do
it "reverses a string with multi byte characters" do
"微軟正黑體".reverse.should == "體黑正軟微"
end
it "reverses a string with multi byte characters" do
"微軟正黑體".reverse.should == "體黑正軟微"
end
end
@ -42,11 +40,9 @@ describe "String#reverse!" do
lambda { "".freeze.reverse! }.should raise_error(frozen_error_class)
end
with_feature :encoding do
it "reverses a string with multi byte characters" do
str = "微軟正黑體"
str.reverse!
str.should == "體黑正軟微"
end
it "reverses a string with multi byte characters" do
str = "微軟正黑體"
str.reverse!
str.should == "體黑正軟微"
end
end