Sha256: 658d8d9b263e84c938885d60e73c50591c36bbdeb470a51838e0a29e8a8d1bc2

Contents?: true

Size: 456 Bytes

Versions: 5

Compression:

Stored size: 456 Bytes

Contents

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rubysl-rexml-2.0.4 spec/attribute/write_spec.rb
rubysl-rexml-2.0.3 spec/attribute/write_spec.rb
rubysl-rexml-1.0.0 spec/attribute/write_spec.rb
rubysl-rexml-2.0.2 spec/attribute/write_spec.rb
rubysl-rexml-2.0.1 spec/attribute/write_spec.rb