summaryrefslogtreecommitdiff
path: root/spec/rubyspec/library/rexml/text/empty_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/library/rexml/text/empty_spec.rb')
-rw-r--r--spec/rubyspec/library/rexml/text/empty_spec.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/spec/rubyspec/library/rexml/text/empty_spec.rb b/spec/rubyspec/library/rexml/text/empty_spec.rb
deleted file mode 100644
index 7102e1586e..0000000000
--- a/spec/rubyspec/library/rexml/text/empty_spec.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-require File.expand_path('../../../../spec_helper', __FILE__)
-require 'rexml/document'
-
-describe "REXML::Text#empty?" do
- it "returns true if the text is empty" do
- REXML::Text.new("").empty?.should == true
- end
-
- it "returns false if the text is not empty" do
- REXML::Text.new("some_text").empty?.should == false
- end
-end