diff options
author | Vishnu Atrai <me@vishnuatrai.com> | 2011-05-10 22:51:54 +0530 |
---|---|---|
committer | Vishnu Atrai <me@vishnuatrai.com> | 2011-05-10 22:51:54 +0530 |
commit | 33f0b6b67d640168c2699659c4a6aa2113b635b7 (patch) | |
tree | b2a1b85728ab6e3c25dcf7e90adbc81cf4396b28 /activerecord | |
parent | 4de977117f5d7123aa97ab3837cc96ec19c68d33 (diff) | |
download | rails-33f0b6b67d640168c2699659c4a6aa2113b635b7.tar.gz rails-33f0b6b67d640168c2699659c4a6aa2113b635b7.tar.bz2 rails-33f0b6b67d640168c2699659c4a6aa2113b635b7.zip |
minor cleaning
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/test/cases/associations_test.rb | 2 | ||||
-rw-r--r-- | activerecord/test/cases/base_test.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/cases/associations_test.rb b/activerecord/test/cases/associations_test.rb index 04f628a398..49d82ba2df 100644 --- a/activerecord/test/cases/associations_test.rb +++ b/activerecord/test/cases/associations_test.rb @@ -85,7 +85,7 @@ class AssociationsTest < ActiveRecord::TestCase def test_should_construct_new_finder_sql_after_create person = Person.new :first_name => 'clark' - assert_equal [], person.readers.find(:all) + assert_equal [], person.readers.all person.save! reader = Reader.create! :person => person, :post => Post.new(:title => "foo", :body => "bar") assert person.readers.find(reader.id) diff --git a/activerecord/test/cases/base_test.rb b/activerecord/test/cases/base_test.rb index 1775ba9999..fb4eacb632 100644 --- a/activerecord/test/cases/base_test.rb +++ b/activerecord/test/cases/base_test.rb @@ -105,7 +105,7 @@ class BasicsTest < ActiveRecord::TestCase def test_select_symbol topic_ids = Topic.select(:id).map(&:id).sort - assert_equal Topic.find(:all).map(&:id).sort, topic_ids + assert_equal Topic.all.map(&:id).sort, topic_ids end def test_table_exists |