aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/cases/associations')
-rw-r--r--activerecord/test/cases/associations/eager_test.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/test/cases/associations/eager_test.rb b/activerecord/test/cases/associations/eager_test.rb
index 810336684c..1ea101f3c9 100644
--- a/activerecord/test/cases/associations/eager_test.rb
+++ b/activerecord/test/cases/associations/eager_test.rb
@@ -76,6 +76,12 @@ class EagerAssociationTest < ActiveRecord::TestCase
assert_nil Post.find(posts(:authorless).id, :include => :author).author
end
+ def test_nested_loading_with_no_associations
+ assert_nothing_raised do
+ Post.find(posts(:authorless).id, :include => {:author => :author_addresss})
+ end
+ end
+
def test_eager_association_loading_with_belongs_to_and_foreign_keys
pets = Pet.find(:all, :include => :owner)
assert_equal 3, pets.length