diff options
Diffstat (limited to 'spec/rubyspec/library/rexml/attribute/write_spec.rb')
-rw-r--r-- | spec/rubyspec/library/rexml/attribute/write_spec.rb | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/spec/rubyspec/library/rexml/attribute/write_spec.rb b/spec/rubyspec/library/rexml/attribute/write_spec.rb deleted file mode 100644 index b6b59930e3..0000000000 --- a/spec/rubyspec/library/rexml/attribute/write_spec.rb +++ /dev/null @@ -1,23 +0,0 @@ -require File.expand_path('../../../../spec_helper', __FILE__) -require 'rexml/document' - -describe "REXML::Attribute#write" do - before :each do - @attr = REXML::Attribute.new("name", "Charlotte") - @s = "" - end - - it "writes the name and value to output" do - @attr.write(@s) - @s.should == "name='Charlotte'" - end - - it "currently ignores the second argument" do - @attr.write(@s, 3) - @s.should == "name='Charlotte'" - - @s = "" - @attr.write(@s, "foo") - @s.should == "name='Charlotte'" - end -end |