2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../../spec_helper'
|
2017-05-07 12:04:49 +00:00
|
|
|
|
2020-09-15 21:54:31 +02:00
|
|
|
ruby_version_is ''...'3.0' do
|
2020-01-12 08:14:26 +09:00
|
|
|
require 'rexml/document'
|
2017-05-07 12:04:49 +00:00
|
|
|
|
2020-01-12 08:14:26 +09:00
|
|
|
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
|
2017-05-07 12:04:49 +00:00
|
|
|
|
2020-01-12 08:14:26 +09:00
|
|
|
after :each do
|
|
|
|
@file.close
|
|
|
|
rm_r @f
|
|
|
|
end
|
2017-05-07 12:04:49 +00:00
|
|
|
|
2020-01-12 08:14:26 +09:00
|
|
|
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
|
2017-05-07 12:04:49 +00:00
|
|
|
|
2020-01-12 08:14:26 +09:00
|
|
|
it "escapes characters" do
|
|
|
|
@t.write_with_substitution(@file, "& < >")
|
|
|
|
@file.rewind
|
|
|
|
@file.gets.should == "& < >"
|
|
|
|
end
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|
|
|
|
end
|