instiki/vendor/rails/activesupport/test/xml_mini/rexml_engine_test.rb
Jacques Distler e2ccdfd812 Instiki 0.16.5
Update to Rails 2.3.2 (the stable Rails 2.3 release).
Add audio/speex support
Update CHANGELOG
Bump version number
2009-03-16 09:55:30 -05:00

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