fixing more test warnings in 1.9.3

This commit is contained in:
Aaron Patterson 2011-04-30 17:40:53 -07:00
parent 9274a5744b
commit a0656989c4
3 changed files with 6 additions and 6 deletions

@ -576,9 +576,9 @@ def test_reloading_association_with_key_change
end
def test_polymorphic_counter_cache
tagging = taggings(:welcome_general)
post = posts(:welcome)
comment = comments(:greetings)
tagging = taggings(:welcome_general)
post = post = posts(:welcome)
comment = comments(:greetings)
assert_difference 'post.reload.taggings_count', -1 do
assert_difference 'comment.reload.taggings_count', +1 do

@ -170,10 +170,10 @@ def test_including_duplicate_objects_from_has_many
assert_equal [comment], category.posts[0].comments
end
end
def test_associations_loaded_for_all_records
post = Post.create!(:title => 'foo', :body => "I like cars!")
comment = SpecialComment.create!(:body => 'Come on!', :post => post)
SpecialComment.create!(:body => 'Come on!', :post => post)
first_category = Category.create! :name => 'First!', :posts => [post]
second_category = Category.create! :name => 'Second!', :posts => [post]

@ -760,7 +760,7 @@ def test_interpolated_conditions
def test_primary_key_option_on_source
post = posts(:welcome)
category = categories(:general)
categorization = Categorization.create!(:post_id => post.id, :named_category_name => category.name)
Categorization.create!(:post_id => post.id, :named_category_name => category.name)
assert_equal [category], post.named_categories
assert_equal [category.name], post.named_category_ids # checks when target loaded