mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
643344dc94
It must be an empty string. https://github.com/ruby/rexml/commit/81bc7cd4f5
44 lines
1 KiB
Ruby
44 lines
1 KiB
Ruby
# frozen_string_literal: false
|
|
|
|
require "test/unit"
|
|
require "rexml/document"
|
|
require "rexml/functions"
|
|
|
|
module REXMLTests
|
|
class TestFunctionsLocalName < Test::Unit::TestCase
|
|
def setup
|
|
REXML::Functions.context = nil
|
|
end
|
|
|
|
def test_one
|
|
document = REXML::Document.new(<<-XML)
|
|
<root xmlns:x="http://example.com/x/">
|
|
<x:child/>
|
|
</root>
|
|
XML
|
|
node_set = document.root.children
|
|
assert_equal("child", REXML::Functions.local_name(node_set))
|
|
end
|
|
|
|
def test_multiple
|
|
document = REXML::Document.new(<<-XML)
|
|
<root xmlns:x="http://example.com/x/">
|
|
<x:child1/>
|
|
<x:child2/>
|
|
</root>
|
|
XML
|
|
node_set = document.root.children
|
|
assert_equal("child1", REXML::Functions.local_name(node_set))
|
|
end
|
|
|
|
def test_nonexistent
|
|
assert_equal("", REXML::Functions.local_name([]))
|
|
end
|
|
|
|
def test_context
|
|
document = REXML::Document.new("<root/>")
|
|
REXML::Functions.context = {node: document.root}
|
|
assert_equal("root", REXML::Functions.local_name())
|
|
end
|
|
end
|
|
end
|