2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../../spec_helper'
|
2017-05-07 08:04:49 -04:00
|
|
|
require 'rexml/document'
|
|
|
|
|
|
|
|
describe "REXML::Element#root" do
|
|
|
|
before :each do
|
|
|
|
@doc = REXML::Document.new
|
|
|
|
@root = REXML::Element.new "root"
|
|
|
|
@node = REXML::Element.new "node"
|
|
|
|
@doc << @root << @node
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns first child on documents" do
|
|
|
|
@doc.root.should == @root
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns self on root nodes" do
|
|
|
|
@root.root.should == @root
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns parent's root on child nodes" do
|
|
|
|
@node.root.should == @root
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns self on standalone nodes" do
|
|
|
|
e = REXML::Element.new "Elem" # Note that it doesn't have a parent node
|
|
|
|
e.root.should == e
|
|
|
|
end
|
|
|
|
end
|