mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
encoding.c: drop dummy encoding flag
* encoding.c (enc_autoload): drop dummy encoding flag from the loaded encoding index. this flag is used only in this source. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51251 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e262b29ed0
commit
28c42b4c25
4 changed files with 26 additions and 0 deletions
|
@ -9,4 +9,15 @@ class Test_StrEncAssociate < Test::Unit::TestCase
|
|||
assert_raise(RuntimeError) {s.associate_encoding!(Encoding::US_ASCII)}
|
||||
assert_raise(RuntimeError) {s.associate_encoding!(Encoding::UTF_8)}
|
||||
end
|
||||
|
||||
Encoding.list.select(&:dummy?).each do |enc|
|
||||
enc = enc.name.tr('-', '_')
|
||||
define_method("test_dummy_encoding_index_#{enc}") do
|
||||
assert_separately(["-r-test-/string", "-", enc], <<-"end;") #do
|
||||
enc = Encoding.const_get(ARGV[0])
|
||||
index = Bug::String.encoding_index(enc)
|
||||
assert(index < 0xffff, "<%#x> expected but was\n<%#x>" % [index & 0xffff, index])
|
||||
end;
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue