Sha256: 9f45f8b07e9afeb51e12ecdefb69236a71f46d237310def72ff437d1adbc451b

Contents?: true

Size: 947 Bytes

Versions: 49

Compression:

Stored size: 947 Bytes

Contents

require 'rexml/document'
require File.expand_path('../../../../spec_helper', __FILE__)

describe "REXML::Element#new" do

  it "creates element from tag name" do
    REXML::Element.new("foo").name.should == "foo"
  end

  it "creates element with default attributes" do
    e = REXML::Element.new
    e.name.should == REXML::Element::UNDEFINED
    e.context.should == nil
    e.parent.should == nil
  end

  it "creates element from another element" do
    e = REXML::Element.new "foo"
    f = REXML::Element.new e
    e.name.should == f.name
    e.context.should == f.context
    e.parent.should == f.parent
  end

  it "takes parent as second argument" do
    parent = REXML::Element.new "foo"
    child = REXML::Element.new "bar", parent
    child.parent.should == parent
  end

  it "takes context as third argument" do
    context = {"some_key" => "some_value"}
    REXML::Element.new("foo", nil, context).context.should == context
  end
end

Version data entries

49 entries across 49 versions & 2 rubygems

Version Path
rhodes-3.2.2 spec/framework_spec/app/spec/library/rexml/element/new_spec.rb
rhodes-3.2.2.beta spec/framework_spec/app/spec/library/rexml/element/new_spec.rb
rhodes-3.2.1 spec/framework_spec/app/spec/library/rexml/element/new_spec.rb
rhodes-3.2.0 spec/framework_spec/app/spec/library/rexml/element/new_spec.rb
rhodes-3.2.0.beta.9 spec/framework_spec/app/spec/library/rexml/element/new_spec.rb
rhodes-3.2.0.beta.8 spec/framework_spec/app/spec/library/rexml/element/new_spec.rb
rhodes-3.2.0.beta.7 spec/framework_spec/app/spec/library/rexml/element/new_spec.rb
rhodes-3.2.0.beta.6 spec/framework_spec/app/spec/library/rexml/element/new_spec.rb
rhodes-3.2.0.beta.5 spec/framework_spec/app/spec/library/rexml/element/new_spec.rb