mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/rexml/test_core.rb (Tester#test_ticket_88): Follow the
change that encoding name in XML declaration isn't normalized. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3f817764e2
commit
9c606a0a4c
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Sat Nov 3 12:54:13 2012 Kouhei Sutou <kou@cozmixng.org>
|
||||
|
||||
* test/rexml/test_core.rb (Tester#test_ticket_88): Follow the
|
||||
change that encoding name in XML declaration isn't normalized.
|
||||
|
||||
Sat Nov 3 12:49:45 2012 Kouhei Sutou <kou@cozmixng.org>
|
||||
|
||||
* lib/rexml/document.rb (REXML::Document#write): Document encoding
|
||||
|
|
|
@ -1312,9 +1312,9 @@ EOL
|
|||
|
||||
def test_ticket_88
|
||||
doc = REXML::Document.new("<?xml version=\"1.0\" encoding=\"shift_jis\"?>")
|
||||
assert_equal("<?xml version='1.0' encoding='SHIFT_JIS'?>", doc.to_s)
|
||||
assert_equal("<?xml version='1.0' encoding='shift_jis'?>", doc.to_s)
|
||||
doc = REXML::Document.new("<?xml version = \"1.0\" encoding = \"shift_jis\"?>")
|
||||
assert_equal("<?xml version='1.0' encoding='SHIFT_JIS'?>", doc.to_s)
|
||||
assert_equal("<?xml version='1.0' encoding='shift_jis'?>", doc.to_s)
|
||||
end
|
||||
|
||||
def test_ticket_85
|
||||
|
|
Loading…
Reference in a new issue