diff options
Diffstat (limited to 'spec/rubyspec/library/rexml/text/append_spec.rb')
-rw-r--r-- | spec/rubyspec/library/rexml/text/append_spec.rb | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/spec/rubyspec/library/rexml/text/append_spec.rb b/spec/rubyspec/library/rexml/text/append_spec.rb deleted file mode 100644 index c8f73f9393..0000000000 --- a/spec/rubyspec/library/rexml/text/append_spec.rb +++ /dev/null @@ -1,10 +0,0 @@ -require File.expand_path('../../../../spec_helper', __FILE__) -require 'rexml/document' - -describe "REXML::Text#<<" do - it "appends a string to this text node" do - text = REXML::Text.new("foo") - text << "bar" - text.should == "foobar" - end -end |