From 63df6eb3821ba9723a3478f6331bd14b81be8140 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Fri, 10 Nov 2006 02:00:14 +0000 Subject: Don't inspect unloaded associations. Closes #2905. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5478 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/associations_test.rb | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'activerecord/test') diff --git a/activerecord/test/associations_test.rb b/activerecord/test/associations_test.rb index f1b02cfda5..f962537966 100755 --- a/activerecord/test/associations_test.rb +++ b/activerecord/test/associations_test.rb @@ -87,6 +87,35 @@ class AssociationProxyTest < Test::Unit::TestCase david.posts_with_extension.first # force load target assert_equal david.posts_with_extension, david.posts_with_extension.testing_proxy_target end + + def test_inspect_does_not_load_target + david = authors(:david) + not_loaded_string = '' + not_loaded_re = Regexp.new(not_loaded_string) + + 2.times do + assert !david.posts.loaded?, "Posts should not be loaded yet" + assert_match not_loaded_re, david.inspect + assert_equal not_loaded_string, david.posts.inspect + + assert !david.posts.empty?, "There should be more than one post" + assert !david.posts.loaded?, "Posts should still not be loaded yet" + assert_match not_loaded_re, david.inspect + assert_equal not_loaded_string, david.posts.inspect + + assert !david.posts.find(:all).empty?, "There should be more than one post" + assert !david.posts.loaded?, "Posts should still not be loaded yet" + assert_match not_loaded_re, david.inspect + assert_equal not_loaded_string, david.posts.inspect + + assert !david.posts(true).empty?, "There should be more than one post" + assert david.posts.loaded?, "Posts should be loaded now" + assert_no_match not_loaded_re, david.inspect + assert_not_equal not_loaded_string, david.posts.inspect + + david.reload + end + end end class HasOneAssociationsTest < Test::Unit::TestCase -- cgit v1.2.3