aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
Commit message (Expand)AuthorAgeFilesLines
* use rake to create test databases for usAaron Patterson2011-01-141-9/+0
* transactional fixtures must be set to false for this testAaron Patterson2011-01-141-1/+1
* preheat the table cache in arelAaron Patterson2011-01-141-0/+1
* Add missing requireSantiago Pastorino2011-01-141-0/+1
* include_in_memory? should check against @target list in case of new records. ...Aaron Patterson2011-01-121-0/+7
* adding a test for no method errorAaron Patterson2011-01-111-0/+52
* use underlying _read_attribute method rather than causing NoMethodErrorsAaron Patterson2011-01-111-1/+1
* Support for create_association! for has_one associationsJon Leighton2011-01-111-0/+18
* Get rid of set_association_target and association_loaded? as the parts of the...Jon Leighton2011-01-111-1/+1
* DRY up the code which instantiates the association proxyJon Leighton2011-01-113-13/+11
* Raise ActiveRecord::RecordNotSaved if an AssociationCollection fails to be re...Jon Leighton2011-01-111-0/+13
* When assigning a has_one, if anything fails, the assignment should be rolled ...Jon Leighton2011-01-111-2/+5
* In a number of places in the tests, we only need to turn off transactional fi...Jon Leighton2011-01-119-43/+51
* When assigning a has_one, if the new record fails to save, raise an errorJon Leighton2011-01-112-16/+16
* When assigning a has_one, if the existing record fails to be removed from the...Jon Leighton2011-01-111-0/+12
* Have a separate test connection directory for sqlite3 in-memory so that the t...Jon Leighton2011-01-111-0/+0
* Enable the sqlite3 in-memory test connection to workJon Leighton2011-01-115-17/+25
* has_one should always remove the old record (properly), even if not saving th...Jon Leighton2011-01-113-10/+30
* Fix polymorphic belongs_to associationproxy raising errors when loading target.Ernie Miller2011-01-112-0/+11
* Always return decimal average of integer fieldsRaimonds Simanovskis2011-01-101-0/+5
* use SQLite3::VERSION rather than the deprecated classAaron Patterson2011-01-101-1/+1
* Add test for e0e3adfJeremy Kemper2011-01-071-0/+6
* Don't not remove double negativesJon Leighton2011-01-071-1/+1
* Construct an actual ActiveRecord::Relation object for the association scope, ...Jon Leighton2011-01-074-12/+4
* Use encode_with for marshallingJon Leighton2011-01-071-0/+7
* send() will raise an ArgumentError, so we should leverage rubyAaron Patterson2011-01-071-1/+1
* just use a hash for doing association cachingAaron Patterson2011-01-073-4/+3
* adding an `encode_with` method for Psych dump/load methodsAaron Patterson2011-01-051-0/+7
* make sure new objects can round tripAaron Patterson2011-01-051-0/+6
* make sure that Psych can roundtrip an AR objectAaron Patterson2011-01-051-0/+13
* fixing merge errorsAaron Patterson2011-01-042-78/+0
* Remove undocumented feature from has_one where you could pass false as the se...Jon Leighton2011-01-032-36/+7
* ActiveRecord::Relation#primary_key should return a string, just like ActiveRe...Jon Leighton2011-01-031-0/+4
* Implement deprecated version of AssociationReflection#primary_key_name, which...Jon Leighton2011-01-031-0/+12
* When preloading a belongs_to, the target should still be set (to nil) if ther...Jon Leighton2011-01-031-0/+9
* Make Relation#create_with always merge rather than overwrite, not just when m...Jon Leighton2011-01-031-0/+10
* Let AssociationCollection#find use #scoped to do its finding. Note that I am ...Jon Leighton2011-01-036-15/+22
* Fix test_any in relations_test.rb, which was failing when relations_test.rb i...Jon Leighton2011-01-031-0/+8
* Allow assignment on has_one :through where the owner is a new record [#5137 s...Jon Leighton2011-01-036-23/+61
* Have a proper AssociationReflection#foreign_type method rather than using opt...Jon Leighton2011-01-031-0/+6
* Some basic tests for the :foreign_type option on belongs_to, which was previo...Jon Leighton2011-01-033-2/+33
* herp derpricating add_limit_offset!Aaron Patterson2011-01-031-12/+0
* Added one more failing test for bug #6036Robert Pankowecki (Gavdi)2011-01-041-0/+6
* Rename AssociationReflection#primary_key_name to foreign_key, since the optio...Jon Leighton2010-12-311-3/+5
* Support for :counter_cache on polymorphic belongs_toJon Leighton2010-12-312-0/+13
* Refactor BelongsToAssociation to allow BelongsToPolymorphicAssociation to inh...Jon Leighton2010-12-311-6/+36
* Specify the STI type condition using SQL IN rather than a whole load of ORs. ...Jon Leighton2010-12-311-0/+7
* Verify that when has_many associated objects are destroyed via :dependent => ...Jon Leighton2010-12-312-1/+25
* Refactor configure_dependency_for_has_many to use AssociationCollection#delet...Jon Leighton2010-12-311-3/+4
* Make sure Model#touch doesn't try to update non existing columnsPratik Naik2010-12-301-1/+3