aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/xml_mini/libxml_engine_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Enable `Layout/LeadingCommentSpace` to not allow cosmetic changes in the futureRyuta Kamizono2017-12-141-1/+1
| | | | Follow up of #31432.
* [Active Support] `rubocop -a --only Layout/EmptyLineAfterMagicComment`Koichi ITO2017-07-111-0/+1
|
* Use frozen-string-literal in ActiveSupportKir Shatrov2017-07-091-0/+1
|
* Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
| | | | | This reverts commit 3420a14590c0e6915d8b6c242887f74adb4120f9, reversing changes made to afb66a5a598ce4ac74ad84b125a5abf046dcf5aa.
* Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
|
* ✂️ needless lines beneath private.Kasper Timm Hansen2016-11-201-1/+0
|
* Create XMLMiniEngineTest; base class for all testsJon Moss2016-11-201-12/+3
|
* Code styling cleanupJon Moss2016-11-201-6/+6
|
* Create `CommonXMLMiniAdapterTest`; common tests moduleJon Moss2016-11-201-181/+9
| | | | | | Created a new module (a la Action Cable subscription adapter's test suite) to be included in all sub class test to ensure compatability and reduce duplicated code.
* Do not include `ActiveSupport` into test classesJon Moss2016-11-191-11/+9
| | | | | | | | | | | 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=' ```
* Add `Style/EmptyLines` in `.rubocop.yml` and remove extra empty linesRyuta Kamizono2016-08-071-1/+0
|
* normalizes indentation and whitespace across the projectXavier Noria2016-08-061-97/+97
|
* applies new string literal convention in activesupport/testXavier Noria2016-08-061-8/+8
| | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
* Rewind StringIO instances before be parsed againPaco Guzman2013-06-161-0/+1
|
* Compare with the parsed result from REXML backendPaco Guzman2013-05-221-1/+1
|
* Added missing assertAnupam Choudhury2013-04-021-5/+6
|
* Only call MiniTest.autorun if the dependecy is presentRafael Mendonça França2012-12-311-4/+3
|
* use AS::TestCase as the base classAaron Patterson2012-01-051-1/+1
|
* Code cleanup, bugfixes and speed improvements for the Nokogiri and LibXML ↵Willem van Bergen2010-01-011-0/+9
| | | | | | | | XmlMini backends [#3641 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Added CDATA support to the XmlMini LibXML engine, adjusted whitespace ↵Jacob Lauemoeller2009-10-151-0/+194
handling to closer match that of the REXML engine, and added a LibXML engine test Signed-off-by: Michael Koziarski <michael@koziarski.com>