Sha256: f5bf0a4bbab93dbc14bf7852a64dc8d01a9ba0ae8423b23fcbec5a8b81beea58

Contents?: true

Size: 822 Bytes

Versions: 5

Compression:

Stored size: 822 Bytes

Contents

require 'rexml/document'

describe "REXML::Element#each_element_with_text" do
  before :each do
    @document = REXML::Element.new("people")

    @joe = REXML::Element.new("Person")
    @joe.text = "Joe"
    @fred = REXML::Element.new("Person")
    @fred.text = "Fred"
    @another = REXML::Element.new("AnotherPerson")
    @another.text = "Fred"
    @document.root << @joe
    @document.root << @fred
    @document.root << @another
    @childs = []
  end

  it "returns childs with text" do
    @document.each_element_with_text("Joe"){|c| c.should == @joe}
  end

  it "takes max as second argument" do
    @document.each_element_with_text("Fred", 1){ |c| c.should == @fred}
  end

  it "takes XPath filter as third argument" do
    @document.each_element_with_text("Fred", 0, "Person"){ |c| c.should == @fred}
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rubysl-rexml-2.0.4 spec/element/each_element_with_text_spec.rb
rubysl-rexml-2.0.3 spec/element/each_element_with_text_spec.rb
rubysl-rexml-1.0.0 spec/element/each_element_with_text_spec.rb
rubysl-rexml-2.0.2 spec/element/each_element_with_text_spec.rb
rubysl-rexml-2.0.1 spec/element/each_element_with_text_spec.rb