describe do
it do
d = REXML::Document.new
decl = REXML::XMLDecl.new(, , )
d.add decl
d.stand_alone?.should ==
end
# According to the docs this should return the default XMLDecl but that
# will carry some more problems when printing the document. Currently, it
# returns nil. See http://www.ruby-forum.com/topic/146812#650061
it do
REXML::Document.new.stand_alone?.should == nil
end
end