2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../../spec_helper'
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2020-09-15 15:54:31 -04:00
|
|
|
ruby_version_is ''...'3.0' do
|
2020-01-11 18:14:26 -05:00
|
|
|
require 'rexml/document'
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2020-01-11 18:14:26 -05:00
|
|
|
describe "REXML::Document#encoding" do
|
|
|
|
before :each do
|
|
|
|
@doc = REXML::Document.new
|
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2020-01-11 18:14:26 -05:00
|
|
|
it "returns encoding from XML declaration" do
|
|
|
|
@doc.add REXML::XMLDecl.new(nil, "UTF-16", nil)
|
|
|
|
@doc.encoding.should == "UTF-16"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns encoding from XML declaration (for UTF-16 as well)" do
|
|
|
|
@doc.add REXML::XMLDecl.new("1.0", "UTF-8", nil)
|
|
|
|
@doc.encoding.should == "UTF-8"
|
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2020-01-11 18:14:26 -05:00
|
|
|
it "uses UTF-8 as default encoding" do
|
|
|
|
@doc.encoding.should == "UTF-8"
|
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
end
|