1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/rexml/test_element.rb
kou b23eac6958 rexml: REXML::Element#[] accepts String or Symbol as attribute name
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57003 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-12-06 13:57:56 +00:00

18 lines
456 B
Ruby

# frozen_string_literal: false
require "test/unit/testcase"
require "rexml/document"
module REXMLTests
class ElementTester < Test::Unit::TestCase
def test_array_reference_string
doc = REXML::Document.new("<language name='Ruby'/>")
assert_equal("Ruby", doc.root["name"])
end
def test_array_reference_symbol
doc = REXML::Document.new("<language name='Ruby'/>")
assert_equal("Ruby", doc.root[:name])
end
end
end