summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/cdata/shared/to_s.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/rexml/cdata/shared/to_s.rb')
-rw-r--r--spec/ruby/library/rexml/cdata/shared/to_s.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/spec/ruby/library/rexml/cdata/shared/to_s.rb b/spec/ruby/library/rexml/cdata/shared/to_s.rb
deleted file mode 100644
index f8c4951c95..0000000000
--- a/spec/ruby/library/rexml/cdata/shared/to_s.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-describe :rexml_cdata_to_s, shared: true do
- it "returns the contents of the CData" do
- c = REXML::CData.new("some text")
- c.send(@method).should == "some text"
- end
-
- it "does not escape text" do
- c1 = REXML::CData.new("some& text\n")
- c1.send(@method).should == "some& text\n"
- end
-end