use set_language_if_valid 'en' at test_parent_should_be_in_same_project at unit board test
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10478 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
cf52a6ccb4
commit
455738cbe9
|
@ -22,6 +22,8 @@ require File.expand_path('../../test_helper', __FILE__)
|
||||||
class BoardTest < ActiveSupport::TestCase
|
class BoardTest < ActiveSupport::TestCase
|
||||||
fixtures :projects, :boards, :messages, :attachments, :watchers
|
fixtures :projects, :boards, :messages, :attachments, :watchers
|
||||||
|
|
||||||
|
include Redmine::I18n
|
||||||
|
|
||||||
def setup
|
def setup
|
||||||
@project = Project.find(1)
|
@project = Project.find(1)
|
||||||
end
|
end
|
||||||
|
@ -41,6 +43,7 @@ class BoardTest < ActiveSupport::TestCase
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_parent_should_be_in_same_project
|
def test_parent_should_be_in_same_project
|
||||||
|
set_language_if_valid 'en'
|
||||||
board = Board.new(:project_id => 3, :name => 'Test', :description => 'Test', :parent_id => 1)
|
board = Board.new(:project_id => 3, :name => 'Test', :description => 'Test', :parent_id => 1)
|
||||||
assert !board.save
|
assert !board.save
|
||||||
assert_include "Parent forum is invalid", board.errors.full_messages
|
assert_include "Parent forum is invalid", board.errors.full_messages
|
||||||
|
|
Loading…
Reference in New Issue