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

* test/rexml/test_encoding.rb

(REXMLTests::EncodingTester#test_parse_utf16): Use meaningful
  test name. "ticket" in the old test name means the ticket in
  REXML's issue tracker. The REXML's issue tracker was gone. So
  "ticket" is meaningless.

* test/rexml/data/ticket_110_utf16.xml: Rename to ...
* test/rexml/data/utf16.xml: ... this.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48108 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kou 2014-10-23 07:31:31 +00:00
parent 7a608ada8f
commit f6c56982ab
3 changed files with 13 additions and 2 deletions

View file

@ -1,3 +1,14 @@
Thu Oct 23 16:29:02 2014 Kouhei Sutou <kou@cozmixng.org>
* test/rexml/test_encoding.rb
(REXMLTests::EncodingTester#test_parse_utf16): Use meaningful
test name. "ticket" in the old test name means the ticket in
REXML's issue tracker. The REXML's issue tracker was gone. So
"ticket" is meaningless.
* test/rexml/data/ticket_110_utf16.xml: Rename to ...
* test/rexml/data/utf16.xml: ... this.
Thu Oct 23 16:18:11 2014 Kouhei Sutou <kou@cozmixng.org>
* test/rexml/test_encoding.rb

View file

@ -87,8 +87,8 @@ module REXMLTests
REXML::Document.new doc
end
def test_ticket_110
utf16 = File.open(fixture_path("ticket_110_utf16.xml")) do |f|
def test_parse_utf16
utf16 = File.open(fixture_path("utf16.xml")) do |f|
REXML::Document.new(f)
end
assert_equal("UTF-16", utf16.encoding)