aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/readonly_test.rb
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2012-08-03 11:51:52 +0100
committerJon Leighton <j@jonathanleighton.com>2012-08-03 11:51:52 +0100
commit55b24888bbe23af3361fa23891c150e28f27809e (patch)
tree1bb4d28de4838071f31afcf861fc623c06359966 /activerecord/test/cases/readonly_test.rb
parent0a6833b6f701c8c8febadfe2f45e25df29493602 (diff)
downloadrails-55b24888bbe23af3361fa23891c150e28f27809e.tar.gz
rails-55b24888bbe23af3361fa23891c150e28f27809e.tar.bz2
rails-55b24888bbe23af3361fa23891c150e28f27809e.zip
Remove ActiveRecord::Base.to_a
On reflection, it seems like a bit of a weird method to have on ActiveRecord::Base, and it shouldn't be needed most of the time anyway.
Diffstat (limited to 'activerecord/test/cases/readonly_test.rb')
-rw-r--r--activerecord/test/cases/readonly_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/readonly_test.rb b/activerecord/test/cases/readonly_test.rb
index 9b9f11c7de..df076c97b4 100644
--- a/activerecord/test/cases/readonly_test.rb
+++ b/activerecord/test/cases/readonly_test.rb
@@ -28,7 +28,7 @@ class ReadOnlyTest < ActiveRecord::TestCase
def test_find_with_readonly_option
- Developer.to_a.each { |d| assert !d.readonly? }
+ Developer.all.each { |d| assert !d.readonly? }
Developer.readonly(false).each { |d| assert !d.readonly? }
Developer.readonly(true).each { |d| assert d.readonly? }
Developer.readonly.each { |d| assert d.readonly? }