Sha256: fefc0333f597a1a2cf65b7adfc853b897da90f65a8e271144e2b6b1f38f39513

Contents?: true

Size: 942 Bytes

Versions: 49

Compression:

Stored size: 942 Bytes

Contents

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

describe "REXML::Text#value" do
  it "returns the text value of this node" do
    REXML::Text.new("test").value.should == "test"
  end

  it "does not escape entities" do
    REXML::Text.new("& \"").value.should == "& \""
  end

  it "follows the respect_whitespace attribute" do
    REXML::Text.new("test     bar", false).value.should == "test bar"
    REXML::Text.new("test     bar", true).value.should == "test     bar"
  end

  it "ignores the raw attribute" do
    REXML::Text.new("sean russell", false, nil, true).value.should == "sean russell"
  end
end

describe "REXML::Text#value=" do
  before :each do
    @t = REXML::Text.new("new")
  end

  it "sets the text of the node" do
    @t.value = "another text"
    @t.to_s.should == "another text"
  end

  it "escapes entities" do
    @t.value = "<a>"
    @t.to_s.should == "&lt;a&gt;"
  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/text/value_spec.rb
rhodes-3.2.2.beta spec/framework_spec/app/spec/library/rexml/text/value_spec.rb
rhodes-3.2.1 spec/framework_spec/app/spec/library/rexml/text/value_spec.rb
rhodes-3.2.0 spec/framework_spec/app/spec/library/rexml/text/value_spec.rb
rhodes-3.2.0.beta.9 spec/framework_spec/app/spec/library/rexml/text/value_spec.rb
rhodes-3.2.0.beta.8 spec/framework_spec/app/spec/library/rexml/text/value_spec.rb
rhodes-3.2.0.beta.7 spec/framework_spec/app/spec/library/rexml/text/value_spec.rb
rhodes-3.2.0.beta.6 spec/framework_spec/app/spec/library/rexml/text/value_spec.rb
rhodes-3.2.0.beta.5 spec/framework_spec/app/spec/library/rexml/text/value_spec.rb