aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
Commit message (Expand)AuthorAgeFilesLines
* Added tests for HABTM associations with counter_sqlTekin Suleyman2008-11-071-0/+23
* Make sure ActiveRecord::Base.connected? doesn't raise an exception for define...Pratik Naik2008-11-061-0/+5
* Ensure ActiveRecord::ConnectionPool.connected? handles undefined connections....Wes Oldenbeuving2008-11-061-0/+8
* Fixed that serialized strings should never be type-casted (i.e. turning "Yes"...David Heinemeier Hansson2008-10-271-0/+6
* "raise NoMethodError" raises NoMethodError. Raise it with NoMethodError.new i...Mike Gunderloy2008-10-251-4/+7
* Fixed issue where block is not called on the very first invocation of a find_...Ken Miller2008-10-241-0/+11
* Skip collection ids reader optimization if using :finder_sqlJeremy Kemper2008-10-231-0/+7
* Ensure association proxy responds to private class methods defined in associa...Pratik Naik2008-10-162-2/+16
* Allow class methods to be sent (via #send) to association proxy (fix for bug ...Ian White2008-10-161-0/+4
* Ensure methods called on association proxies respect access control. [#1083 s...Pratik Naik2008-10-135-1/+48
* Remove the functionality introduce in 28d3390Michael Koziarski2008-10-102-33/+0
* explicitly including child associations that are also included in the parent ...Will Bryant2008-10-103-1/+44
* Ensure Model.sum and Model.avg typecast appropriately. [#1066 state:resolved]Pratik Naik2008-10-041-3/+3
* Introduce ActiveRecord::Reflection::ThroughReflection to simplify hm:t reflec...Pratik Naik2008-10-041-0/+4
* Fix has_many :through when the source is a belongs_to association. [#323 stat...Zach Dennis2008-10-044-1/+28
* Try reloading model on class mismatch [#229 state:resolved]Lawrence Pit2008-10-041-0/+20
* Make sure recreate MySQL test database with the proper encoding and collation...Luca Guidi2008-10-031-0/+5
* Dynamic finders should use the ActiveRecord::Base::find method instead of ::f...Eloy Duran2008-10-031-5/+22
* wrote a test showing eager loading's misbehavior (sanitizing against the wron...Will Bryant2008-09-291-0/+7
* Changed ActiveRecord attributes to respect access control.Adam Milligan2008-09-241-4/+47
* Allowed passing arrays-of-strings to :join everywhere. Merge duplicate join s...Pivotal Labs2008-09-243-0/+47
* Make AssociationCollection start transactions in the correct database.Hongli Lai (Phusion)2008-09-233-0/+27
* Merge branch 'patches' into multibyteMichael Koziarski2008-09-223-1/+40
|\
| * Association#first and last should not load the association if not needed. [#1...Jan De Poorter2008-09-222-1/+14
| * Add Model#delete instance method, similar to Model.delete class method. [#108...Hongli Lai (Phusion2008-09-211-0/+26
* | Change all calls to String#chars to String#mb_chars.Manfred Stienstra2008-09-212-6/+6
* | Fix a test that assumes .mb_chars to always return an instance of the proxy_c...Manfred Stienstra2008-09-211-7/+23
* | Change all calls to String#chars to String#mb_chars. Remove a exception for R...Manfred Stienstra2008-09-211-2/+2
|/
* applied patch to fix the associations with blocks in modules bug from an old ...Adeh DeSandies2008-09-201-0/+15
* I18n: Introduce I18n.load_path in favor of I18n.load_translations and change ...Sven Fuchs2008-09-201-1/+5
* Fixed an error triggered by a reload followed by a foreign key assignment.Nathaniel Talbott2008-09-201-0/+8
* When counting grouped records the target should be loaded to return a valid g...miloops2008-09-151-0/+2
* stop AR's debug.log filling with warnings about not being able to load fixtur...Frederick Cheung2008-09-141-0/+14
* Deal with MySQL's quirky handling of defaults and blob/text columnsFrederick Cheung2008-09-142-1/+36
* Multiparameter attributes skip time zone conversion for time-only columns [#1...gbuesing2008-09-141-0/+18
* Base.skip_time_zone_conversion_for_attributes uses class_inheritable_accessor...miloops2008-09-141-0/+9
* Allow for the dirty tracking to work with the aliased name of aliased attribu...Rich Cavanaugh2008-09-132-0/+14
* Support for updating a belongs to association from the foreign key (without s...Jon Leighton2008-09-132-0/+25
* Use select and change test so new tests can work on postgres.miloops2008-09-123-5/+5
* Improve test coverage when using the group option in find, has_many or has_an...miloops2008-09-116-2/+30
* Fix ActiveRecord::Base.quote_bound_value for ActiveSupper::Multibyte::Chars v...Manfred Stienstra2008-09-112-2/+35
* Fixes validates_uniquness_of problem with case insensitive string containing ...wmoxam2008-09-111-0/+7
* Add missing assert_deprecated calls to prevent spam during test runsMichael Koziarski2008-09-111-2/+6
* add activerecord tests to make sure the deprecated %s and %d interpolation sy...Sven Fuchs2008-09-101-1/+15
* add activerecord tests for deprecation of %s and %d in error messages (and tr...Sven Fuchs2008-09-101-0/+12
* change activerecord validation tests to not use the deprecated interpolation ...Sven Fuchs2008-09-101-29/+29
* fixed association preloading to use = instead of IN when there's only one recordrsl2008-09-101-1/+1
* Revert "Add :accessible option to Associations for allowing mass assignments ...Pratik Naik2008-09-103-115/+1
* Added :constructor and :converter options to composed_of and deprecated the c...Rob Anderton2008-09-103-2/+64
* Support :limit on update_all so that has_many with :limit can be safely updatedTarmo Tänav2008-09-102-4/+16