aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/nested_through_associations_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Fix tests under postgres - we should always put conditions in the WHERE part ↵Jon Leighton2011-03-121-1/+1
| | | | not in ON constraints because postgres requires that the table has been joined before the condition references it.
* Add a test for STI on the through where the through is nested, and change ↵Jon Leighton2011-03-051-0/+9
| | | | the code which support this
* Merge branch 'master' into nested_has_many_throughJon Leighton2011-03-041-94/+164
| | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: activerecord/CHANGELOG activerecord/lib/active_record/association_preload.rb activerecord/lib/active_record/associations.rb activerecord/lib/active_record/associations/class_methods/join_dependency.rb activerecord/lib/active_record/associations/class_methods/join_dependency/join_association.rb activerecord/lib/active_record/associations/has_many_association.rb activerecord/lib/active_record/associations/has_many_through_association.rb activerecord/lib/active_record/associations/has_one_association.rb activerecord/lib/active_record/associations/has_one_through_association.rb activerecord/lib/active_record/associations/through_association_scope.rb activerecord/lib/active_record/reflection.rb activerecord/test/cases/associations/has_many_through_associations_test.rb activerecord/test/cases/associations/has_one_through_associations_test.rb activerecord/test/cases/reflection_test.rb activerecord/test/cases/relations_test.rb activerecord/test/fixtures/memberships.yml activerecord/test/models/categorization.rb activerecord/test/models/category.rb activerecord/test/models/member.rb activerecord/test/models/reference.rb activerecord/test/models/tagging.rb
* Fix naughty trailing whitespaceJon Leighton2010-10-311-90/+90
|
* Rename nested_has_many_through_associations_test.rb because it does not only ↵Jon Leighton2010-10-191-0/+467
concern has_many associations