aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/marshal_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Avoid E constant clashing with Minitest defined version.Kasper Timm Hansen2015-05-221-16/+16
| | | | | Minitest sets an E constant to an empty string to save GC time. This clashes with autoloading tests which define an E constant.
* Use Module#prepend instead of alias_method_chainKir Shatrov2015-03-201-2/+2
| | | | | | | Thanks @fbernier for suggestion! <3 At this moment we can use Module#prepend in all all cases except of Range because of the bug [1] in MRI 2.2 [1] https://bugs.ruby-lang.org/issues/10847
* Fix typo in DependenciesTestHelpers module nameVipul A M2013-03-121-2/+2
|
* Patched Marshal#load to work with constant autoloading ↵Uriel Katz2012-12-011-0/+124
(active_support/dependecies.rb) (issue #8167)