summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/node/parent_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/rexml/node/parent_spec.rb')
-rw-r--r--spec/ruby/library/rexml/node/parent_spec.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/spec/ruby/library/rexml/node/parent_spec.rb b/spec/ruby/library/rexml/node/parent_spec.rb
deleted file mode 100644
index d88ba69657..0000000000
--- a/spec/ruby/library/rexml/node/parent_spec.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-require_relative '../../../spec_helper'
-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