fix functional projects controller test fails in Ruby 1.8.6.
Array#count is introduced in Ruby 1.8.7. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5477 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
a7c510fd0a
commit
eb4ca1ac29
|
@ -483,7 +483,8 @@ class ProjectsControllerTest < ActionController::TestCase
|
|||
source = Project.find(1)
|
||||
assert_equal source.versions.count, project.versions.count, "All versions were not copied"
|
||||
# issues assigned to a closed version won't be copied
|
||||
assert_equal source.issues.select {|i| i.fixed_version.nil? || i.fixed_version.open?}.count, project.issues.count, "All issues were not copied"
|
||||
assert_equal source.issues.select {|i| i.fixed_version.nil? || i.fixed_version.open?}.size,
|
||||
project.issues.count, "All issues were not copied"
|
||||
assert_equal 0, project.members.count
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue