summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/element/has_elements_spec.rb
blob: 04c7fe01a5af4529d658786f1fa01d140c98a6dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require_relative '../../../spec_helper'

ruby_version_is ''...'3.0' do
  require 'rexml/document'

  describe "REXML::Element#has_elements?" do
    before :each do
      @e = REXML::Element.new("root")
    end

    it "returns true if element has child elements" do
      child = REXML::Element.new("child")
      @e << child
      @e.has_elements?.should be_true
    end

    it "returns false if element doesn't have child elements" do
      @e.has_elements?.should be_false
    end
  end
end