Sha256: f873c9e12bd17a40a7c82a7322a23d0a6b7dba1fcf1ad1a16f47a45981a00797

Contents?: true

Size: 753 Bytes

Versions: 5

Compression:

Stored size: 753 Bytes

Contents

require 'rexml/document'

describe "REXML::Attribute#initialize" do
  before :each do
    @e = REXML::Element.new "root"
    @name = REXML::Attribute.new("name", "Nicko")
    @e.add_attribute @name
  end

  it "receives two strings for name and value" do
    @e.attributes["name"].should == "Nicko"
    @e.add_attribute REXML::Attribute.new("last_name", nil)
    @e.attributes["last_name"].should == ""
  end

  it "receives an Attribute and clones it" do
    copy = REXML::Attribute.new(@name)
    copy.should == @name
  end

  it "recives a parent node" do
    last_name = REXML::Attribute.new("last_name", "McBrain", @e)
    last_name.element.should == @e

    last_name = REXML::Attribute.new(@name, @e)
    last_name.element.should == @e
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

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