Fixed: error when creating a project with a version format custom field (#10218).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8865 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2012-02-13 18:57:12 +00:00
parent 7fa18cad57
commit cccfed7006
2 changed files with 16 additions and 4 deletions

View File

@@ -598,6 +598,13 @@ class ProjectTest < ActiveSupport::TestCase
assert !versions.collect(&:id).include?(6)
end
def test_shared_versions_for_new_project_should_include_system_shared_versions
p = Project.find(5)
v = Version.create!(:name => 'system_sharing', :project => p, :sharing => 'system')
assert_include v, Project.new.shared_versions
end
def test_next_identifier
ProjectCustomField.delete_all
Project.create!(:name => 'last', :identifier => 'p2008040')