diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-07-21 16:58:59 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-07-21 16:58:59 +0000 |
commit | 29ddc82a11f30f7fcb917dd062fc38f48640b4ea (patch) | |
tree | f7d58fb646b26808462fe1dc91888a68d8ecdcd2 /test/functional/boards_controller_test.rb | |
parent | 55e89ae5bc815e777165de12fdd79545cbf42c5a (diff) | |
download | redmine-29ddc82a11f30f7fcb917dd062fc38f48640b4ea.tar.gz redmine-29ddc82a11f30f7fcb917dd062fc38f48640b4ea.zip |
Removes calls to #assert_template and #assigns in functional tests.
git-svn-id: http://svn.redmine.org/redmine/trunk@15724 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/boards_controller_test.rb')
-rw-r--r-- | test/functional/boards_controller_test.rb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test/functional/boards_controller_test.rb b/test/functional/boards_controller_test.rb index dcb32d708..ce70599be 100644 --- a/test/functional/boards_controller_test.rb +++ b/test/functional/boards_controller_test.rb @@ -161,14 +161,14 @@ class BoardsControllerTest < Redmine::ControllerTest post :create, :project_id => 1, :board => { :name => '', :description => 'Testing board creation'} end assert_response :success - assert_template 'new' + assert_select_error /Name cannot be blank/ end def test_edit @request.session[:user_id] = 2 get :edit, :project_id => 1, :id => 2 assert_response :success - assert_template 'edit' + assert_select 'input[name=?][value=?]', 'board[name]', 'Discussion' end def test_edit_with_parent @@ -176,7 +176,6 @@ class BoardsControllerTest < Redmine::ControllerTest @request.session[:user_id] = 2 get :edit, :project_id => 1, :id => board.id assert_response :success - assert_template 'edit' assert_select 'select[name=?]', 'board[parent_id]' do assert_select 'option[value="2"][selected=selected]' @@ -204,7 +203,7 @@ class BoardsControllerTest < Redmine::ControllerTest @request.session[:user_id] = 2 put :update, :project_id => 1, :id => 2, :board => { :name => '', :description => 'Testing board update'} assert_response :success - assert_template 'edit' + assert_select_error /Name cannot be blank/ end def test_destroy |