aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/xml_mini/rexml_engine_test.rb
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2016-11-20 10:09:20 -0500
committerJon Moss <me@jonathanmoss.me>2016-11-20 10:46:16 -0500
commit0ab54f4a49b388f0b75862b881fdef2545b380cf (patch)
treecda3fa72a292f0e91184b8fc77c29fba2afdcdf2 /activesupport/test/xml_mini/rexml_engine_test.rb
parent2bdc4ddc065cb395f287f1511f9cb14059a66652 (diff)
downloadrails-0ab54f4a49b388f0b75862b881fdef2545b380cf.tar.gz
rails-0ab54f4a49b388f0b75862b881fdef2545b380cf.tar.bz2
rails-0ab54f4a49b388f0b75862b881fdef2545b380cf.zip
Create XMLMiniEngineTest; base class for all tests
Diffstat (limited to 'activesupport/test/xml_mini/rexml_engine_test.rb')
-rw-r--r--activesupport/test/xml_mini/rexml_engine_test.rb8
1 files changed, 2 insertions, 6 deletions
diff --git a/activesupport/test/xml_mini/rexml_engine_test.rb b/activesupport/test/xml_mini/rexml_engine_test.rb
index 4222436ae8..085cf2caf7 100644
--- a/activesupport/test/xml_mini/rexml_engine_test.rb
+++ b/activesupport/test/xml_mini/rexml_engine_test.rb
@@ -1,10 +1,6 @@
-require "abstract_unit"
-require "active_support/xml_mini"
-require_relative "./common"
-
-class REXMLEngineTest < ActiveSupport::TestCase
- include CommonXMLMiniAdapterTest
+require_relative "xml_mini_engine_test"
+class REXMLEngineTest < XMLMiniEngineTest
def test_default_is_rexml
assert_equal ActiveSupport::XmlMini_REXML, ActiveSupport::XmlMini.backend
end