mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
694998ee4f
[#2190 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
15 lines
332 B
Ruby
15 lines
332 B
Ruby
require 'abstract_unit'
|
|
require 'active_support/xml_mini'
|
|
|
|
class REXMLEngineTest < Test::Unit::TestCase
|
|
include ActiveSupport
|
|
|
|
def test_default_is_rexml
|
|
assert_equal XmlMini_REXML, XmlMini.backend
|
|
end
|
|
|
|
def test_set_rexml_as_backend
|
|
XmlMini.backend = 'REXML'
|
|
assert_equal XmlMini_REXML, XmlMini.backend
|
|
end
|
|
end
|