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::Document#encoding" do
|
|
|
|
before :each do
|
|
|
|
@doc = REXML::Document.new
|
|
|
|
end
|
2017-05-07 12:04:49 +00:00
|
|
|
|
2020-01-12 08:14:26 +09: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 12:04:49 +00:00
|
|
|
|
2020-01-12 08:14:26 +09:00
|
|
|
it "uses UTF-8 as default encoding" do
|
|
|
|
@doc.encoding.should == "UTF-8"
|
|
|
|
end
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|
|
|
|
end
|