1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66622 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eregon 2018-12-29 00:22:52 +00:00
parent 548defb608
commit 2076c2c3c4
34 changed files with 759 additions and 328 deletions

View file

@ -42,6 +42,8 @@ describe :rb_enc_set_index, shared: true do
end
describe "C-API Encoding function" do
@n = 0
before :each do
@s = CApiEncodingSpecs.new
end
@ -49,8 +51,9 @@ describe "C-API Encoding function" do
ruby_version_is "2.6" do
describe "rb_enc_alias" do
it "creates an alias for an existing Encoding" do
@s.rb_enc_alias("ZOMGWTFBBQ", "UTF-8").should >= 0
Encoding.find("ZOMGWTFBBQ").name.should == "UTF-8"
name = "ZOMGWTFBBQ#{@n += 1}"
@s.rb_enc_alias(name, "UTF-8").should >= 0
Encoding.find(name).name.should == "UTF-8"
end
end
end