aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/rexml/node/parent_spec.rb
blob: ee3c2345341305834e149f36559f07c6321712e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require File.expand_path('../../../../spec_helper', __FILE__)
require 'rexml/document'

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

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

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