Backported r9140 from trunk.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.3-stable@9156 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2012-03-07 18:40:41 +00:00
parent 4e64c01a32
commit 4a9013917d
3 changed files with 15 additions and 2 deletions
@@ -88,6 +88,14 @@ class BoardsControllerTest < ActionController::TestCase
assert_equal 'Testing', Board.find(2).name
end
def test_update_position
@request.session[:user_id] = 2
post :edit, :project_id => 1, :id => 2, :board => { :move_to => 'highest'}
assert_redirected_to '/projects/ecookbook/settings/boards'
board = Board.find(2)
assert_equal 1, board.position
end
def test_post_destroy
@request.session[:user_id] = 2
assert_difference 'Board.count', -1 do