adding tests for #5234 and #5184. Tests were from Akira Matsuda. Thanks Akira!

This commit is contained in:
Aaron Patterson
2010-10-30 12:26:38 -07:00
parent 7d5762d2c2
commit cbca12f908
2 changed files with 11 additions and 0 deletions

View File

@@ -226,6 +226,12 @@ class MethodScopingTest < ActiveRecord::TestCase
assert Post.find(1).comments.include?(new_comment)
end
def test_scoped_create_with_join_and_merge
(Comment.where(:body => "but Who's Buying?").joins(:post) & Post.where(:body => 'Peace Sells...')).with_scope do
assert_equal({:body => "but Who's Buying?"}, Comment.scoped.scope_for_create)
end
end
def test_immutable_scope
options = { :conditions => "name = 'David'" }
Developer.send(:with_scope, :find => options) do

View File

@@ -500,6 +500,11 @@ class RelationTest < ActiveRecord::TestCase
end
end
def test_relation_merging_with_joins
comments = Comment.joins(:post).where(:body => 'Thank you for the welcome') & Post.where(:body => 'Such a lovely day')
assert_equal 1, comments.count
end
def test_count
posts = Post.scoped