fix find_all_by_id(n1, n2) parameter at test_member_of_scope_should_return_the_union_of_all_members of PrincipalTest

find_all_by_id(n1, n2) returns only n1 result.

git-svn-id: http://svn.redmine.org/redmine/trunk@12469 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2013-12-27 03:26:05 +00:00
parent 2959818688
commit 74dbb35b87
1 changed files with 4 additions and 2 deletions

View File

@ -31,8 +31,10 @@ class PrincipalTest < ActiveSupport::TestCase
end
def test_member_of_scope_should_return_the_union_of_all_members
projects = Project.find_all_by_id(1, 2)
assert_equal projects.map(&:principals).flatten.sort, Principal.member_of(projects).sort
projects = Project.find([1])
assert_equal [3, 2], Principal.member_of(projects).sort.map(&:id)
projects = Project.find([1, 2])
assert_equal [3, 2, 8, 11], Principal.member_of(projects).sort.map(&:id)
end
def test_member_of_scope_should_be_empty_for_no_projects