aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations_test.rb
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2012-07-27 17:55:43 +0100
committerJon Leighton <j@jonathanleighton.com>2012-07-27 17:55:43 +0100
commitd1099540aff6cf00f31dafbbceed1f9fc48780a2 (patch)
tree1059bf064644bf1fa5adf36ddeccae774804dc75 /activerecord/test/cases/associations_test.rb
parentb658cf1198bbeb0fb702cd10c6f491cd90cedba0 (diff)
downloadrails-d1099540aff6cf00f31dafbbceed1f9fc48780a2.tar.gz
rails-d1099540aff6cf00f31dafbbceed1f9fc48780a2.tar.bz2
rails-d1099540aff6cf00f31dafbbceed1f9fc48780a2.zip
Deprecate Relation#all.
It has been moved to active_record_deprecated_finders. Use #to_a instead.
Diffstat (limited to 'activerecord/test/cases/associations_test.rb')
-rw-r--r--activerecord/test/cases/associations_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations_test.rb b/activerecord/test/cases/associations_test.rb
index 90174507eb..b7c2bcad00 100644
--- a/activerecord/test/cases/associations_test.rb
+++ b/activerecord/test/cases/associations_test.rb
@@ -86,7 +86,7 @@ class AssociationsTest < ActiveRecord::TestCase
def test_should_construct_new_finder_sql_after_create
person = Person.new :first_name => 'clark'
- assert_equal [], person.readers.all
+ assert_equal [], person.readers.to_a
person.save!
reader = Reader.create! :person => person, :post => Post.new(:title => "foo", :body => "bar")
assert person.readers.find(reader.id)