aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/xml_mini_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Missing require AS/core_ext/date/conversionsAkira Matsuda2019-08-021-0/+1
|
* Suppress `warning: BigDecimal.new is deprecated`Yasuo Honda2017-12-151-1/+1
| | | | | | | | | | | | | | | | | | | | `BigDecimal.new` has been deprecated in BigDecimal 1.3.3 which will be a default for Ruby 2.5. Refer https://github.com/ruby/bigdecimal/commit/533737338db915b00dc7168c3602e4b462b23503 * This commit has been made as follows: ``` cd rails git grep -l BigDecimal.new | grep -v guides/source/5_0_release_notes.md | grep -v activesupport/test/xml_mini_test.rb | xargs sed -i -e "s/BigDecimal.new/BigDecimal/g" ``` - `activesupport/test/xml_mini_test.rb` Editmanually to remove `.new` and `::` - guides/source/5_0_release_notes.md This is a Rails 5.0 release notes.
* [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
|
* Add more rubocop rules about whitespacesRafael Mendonça França2016-10-291-28/+28
|
* Add three new rubocop rulesRafael Mendonça França2016-08-161-6/+6
| | | | | | | | Style/SpaceBeforeBlockBraces Style/SpaceInsideBlockBraces Style/SpaceInsideHashLiteralBraces Fix all violations in the repository.
* remove redundant curlies from hash argumentsXavier Noria2016-08-061-1/+1
|
* modernizes hash syntax in activesupportXavier Noria2016-08-061-6/+6
|
* applies new string literal convention in activesupport/testXavier Noria2016-08-061-22/+22
| | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
* Require yaml for XML mini isolation test.Kasper Timm Hansen2015-07-111-0/+1
|
* as/core_ext require's not usedAnkit Gupta2015-05-081-1/+0
|
* Fixes wording of test descriptionAdam Doeler2015-02-111-1/+1
|
* Merge pull request #11656 from emre-basala/xml_mini_testRafael Mendonça França2014-04-101-1/+58
|\ | | | | Add tests to ActiveSupport:XmlMini to_tag method
| * Add tests to ActiveSupport:XmlMini to_tag methodemre-basala2013-08-071-1/+58
| |
* | Merge pull request #12769 from birkirb/masterRafael Mendonça França2014-02-011-0/+124
|\ \ | | | | | | | | | | | | | | | | | | Boolean parser blows up on a Fixnum. Conflicts: activesupport/CHANGELOG.md
| * | Fix breakage in XmlMiniBirkir A. Barkarson2013-12-231-0/+125
|/ / | | | | | | | | | | | | - Boolean parsing breaks on non strings (i.e. integer 1|0) - Symbol parsing breaks on non strings. - BigDecimal parsing breaks due to missing require. - Update changelog.
* | Fix order dependent testArun Agrawal2013-09-091-2/+10
| | | | | | | | see c48cbb02d7e6f585e31b404c0c363f0d6b586811
* | Revert "Merge branch 'master' of github.com:rails/docrails"Vijay Dev2013-08-171-10/+2
|/ | | | | | | This reverts commit 70d6e16fbad75b89dd1798ed697e7732b8606fa3, reversing changes made to ea4db3bc078fb3093ecdddffdf4f2f4ff3e1e8f9. Seems to be a code merge done by mistake.
* Fix order dependent testsAkira Matsuda2013-07-261-2/+10
| | | | Restore default ActiveSupport::XmlMini.backend after tests
* Make XmlMini.with_backend usable with threadsNikita Afanasenko2012-11-151-0/+62
| | | | | | | | | | | | | `XmlMini.with_backend` now may be safely used with threads: Thread.new do XmlMini.with_backend("REXML") { rexml_power } end Thread.new do XmlMini.with_backend("LibXML") { libxml_power } end Each thread will use it's own backend.
* use AS::TestCase as the base classAaron Patterson2012-01-051-1/+1
|
* fixing tests on ruby trunkAaron Patterson2011-07-261-1/+1
|
* fixing whitespace errorsAaron Patterson2011-07-261-9/+9
|
* Lighthouse ticket # 6334; added tests to verify that spaces in key are ↵prakashmurthy2011-05-081-0/+10
| | | | dasherized.
* Rename duplicate tests. There is now one failing test that was failing ↵Mike Gehard2011-05-071-1/+1
| | | | before the rename but was never getting run.
* xml_mini_test.rb now runs.José Valim2011-05-071-0/+92