summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/element/has_elements_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/rexml/element/has_elements_spec.rb')
-rw-r--r--spec/ruby/library/rexml/element/has_elements_spec.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/spec/ruby/library/rexml/element/has_elements_spec.rb b/spec/ruby/library/rexml/element/has_elements_spec.rb
deleted file mode 100644
index 54898b0d19..0000000000
--- a/spec/ruby/library/rexml/element/has_elements_spec.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-require 'rexml/document'
-require File.expand_path('../../../../spec_helper', __FILE__)
-
-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