aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/xml_mini/libxml_engine_test.rb
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2016-11-19 10:30:57 -0500
committerJon Moss <me@jonathanmoss.me>2016-11-19 10:30:57 -0500
commit1d18b9b2fb48664074781aff7db6056058725458 (patch)
tree944b5534a2d75c78696f692b0de3c00af199fe74 /activesupport/test/xml_mini/libxml_engine_test.rb
parent4aacace550155faab98710c045f912db80601004 (diff)
downloadrails-1d18b9b2fb48664074781aff7db6056058725458.tar.gz
rails-1d18b9b2fb48664074781aff7db6056058725458.tar.bz2
rails-1d18b9b2fb48664074781aff7db6056058725458.zip
Do not include `ActiveSupport` into test classes
Will help get rid of errors like the following: ``` 1) Error: JDOMEngineTest#test_order=: ArgumentError: wrong number of arguments (0 for 1) /Users/jon/code/rails/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb:106:in `test_order=' ```
Diffstat (limited to 'activesupport/test/xml_mini/libxml_engine_test.rb')
-rw-r--r--activesupport/test/xml_mini/libxml_engine_test.rb20
1 files changed, 9 insertions, 11 deletions
diff --git a/activesupport/test/xml_mini/libxml_engine_test.rb b/activesupport/test/xml_mini/libxml_engine_test.rb
index 81b0d3c407..ae3a5562e0 100644
--- a/activesupport/test/xml_mini/libxml_engine_test.rb
+++ b/activesupport/test/xml_mini/libxml_engine_test.rb
@@ -8,17 +8,15 @@ else
require "active_support/core_ext/hash/conversions"
class LibxmlEngineTest < ActiveSupport::TestCase
- include ActiveSupport
-
def setup
- @default_backend = XmlMini.backend
- XmlMini.backend = "LibXML"
+ @default_backend = ActiveSupport::XmlMini.backend
+ ActiveSupport::XmlMini.backend = "LibXML"
LibXML::XML::Error.set_handler(&lambda { |error| }) #silence libxml, exceptions will do
end
def teardown
- XmlMini.backend = @default_backend
+ ActiveSupport::XmlMini.backend = @default_backend
end
def test_exception_thrown_on_expansion_attack
@@ -42,13 +40,13 @@ else
end
def test_setting_libxml_as_backend
- XmlMini.backend = "LibXML"
- assert_equal XmlMini_LibXML, XmlMini.backend
+ ActiveSupport::XmlMini.backend = "LibXML"
+ assert_equal ActiveSupport::XmlMini_LibXML, ActiveSupport::XmlMini.backend
end
def test_blank_returns_empty_hash
- assert_equal({}, XmlMini.parse(nil))
- assert_equal({}, XmlMini.parse(""))
+ assert_equal({}, ActiveSupport::XmlMini.parse(nil))
+ assert_equal({}, ActiveSupport::XmlMini.parse(""))
end
def test_array_type_makes_an_array
@@ -193,9 +191,9 @@ else
private
def assert_equal_rexml(xml)
- parsed_xml = XmlMini.parse(xml)
+ parsed_xml = ActiveSupport::XmlMini.parse(xml)
xml.rewind if xml.respond_to?(:rewind)
- hash = XmlMini.with_backend("REXML") { XmlMini.parse(xml) }
+ hash = ActiveSupport::XmlMini.with_backend("REXML") { ActiveSupport::XmlMini.parse(xml) }
assert_equal(hash, parsed_xml)
end
end