From: Jean-Baptiste Barth Date: Mon, 20 Jun 2011 01:09:38 +0000 (+0000) Subject: Added a test to ensure 'Project' column can be removed on issues list (#8411) X-Git-Tag: 1.3.0~1794 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8a5015178069aad86d5717fa4b7b806bd5a97ad8;p=redmine.git Added a test to ensure 'Project' column can be removed on issues list (#8411) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6099 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index be9ca2f04..eddb5493c 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -267,6 +267,12 @@ class IssuesControllerTest < ActionController::TestCase assert_kind_of Hash, session[:query] assert_kind_of Array, session[:query][:column_names] assert_equal columns, session[:query][:column_names].map(&:to_s) + + # ensure only these columns are kept in the selected columns list + assert_tag :tag => 'select', :attributes => { :id => 'selected_columns' }, + :children => { :count => 3 } + assert_no_tag :tag => 'option', :attributes => { :value => 'project' }, + :parent => { :tag => 'select', :attributes => { :id => "selected_columns" } } end def test_index_with_custom_field_column