mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
16 lines
332 B
Ruby
16 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
|