summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/node/parent_spec.rb
blob: 43c3a747e0b152fe6ddc49728bac2e645b76c052 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require_relative '../../../spec_helper'

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

  describe "REXML::Node#parent?" do
    it "returns true for Elements" do
      e = REXML::Element.new("foo")
      e.should.parent?
    end

    it "returns true for Documents" do
      e = REXML::Document.new
      e.should.parent?
    end

    # This includes attributes, CData and declarations.
    it "returns false for Texts" do
      e = REXML::Text.new("foo")
      e.should_not.parent?
    end
  end
end