HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-2.5.9/spec/ruby/library/rexml/node/each_recursive_spec.rb
require File.expand_path('../../../../spec_helper', __FILE__)
require 'rexml/document'

describe "REXML::Node#each_recursive" do
  before :each do
    @doc = REXML::Document.new
    @doc << REXML::XMLDecl.new
    @root = REXML::Element.new "root"
    @child1 = REXML::Element.new "child1"
    @child2 = REXML::Element.new "child2"
    @root << @child1
    @root << @child2
    @doc << @root
  end

  it "visits all subnodes of self" do
    nodes = []
    @doc.each_recursive { |node| nodes << node}
    nodes.should == [@root, @child1, @child2]
  end
end