Sha256: 6b0d78d68528a54d4091782df19dbf389778da782fa0dc3ad74ef4dedb70a6b5

Contents?: true

Size: 679 Bytes

Versions: 5

Compression:

Stored size: 679 Bytes

Contents

require 'rexml/document'

describe "REXML::Text#write_with_substitution" do
  before :each do
    @t = REXML::Text.new("test")
    @f = tmp("rexml_spec")
    @file = File.open(@f, "w+")
  end

  after :each do
    @file.close
    rm_r @f
  end

  it "writes out the input to a String" do
    s = ""
    @t.write_with_substitution(s, "some text")
    s.should == "some text"
  end

  it "writes out the input to an IO" do
    @t.write_with_substitution(@file, "some text")
    @file.rewind
    @file.gets.should == "some text"
  end

  it "escapes characters" do
    @t.write_with_substitution(@file, "& < >")
    @file.rewind
    @file.gets.should == "&amp; &lt; &gt;"
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rubysl-rexml-2.0.4 spec/text/write_with_substitution_spec.rb
rubysl-rexml-2.0.3 spec/text/write_with_substitution_spec.rb
rubysl-rexml-1.0.0 spec/text/write_with_substitution_spec.rb
rubysl-rexml-2.0.2 spec/text/write_with_substitution_spec.rb
rubysl-rexml-2.0.1 spec/text/write_with_substitution_spec.rb