]> source.dussan.org Git - redmine.git/commitdiff
Added a test to ensure 'Project' column can be removed on issues list (#8411)
authorJean-Baptiste Barth <jeanbaptiste.barth@gmail.com>
Mon, 20 Jun 2011 01:09:38 +0000 (01:09 +0000)
committerJean-Baptiste Barth <jeanbaptiste.barth@gmail.com>
Mon, 20 Jun 2011 01:09:38 +0000 (01:09 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6099 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/issues_controller_test.rb

index be9ca2f04f2ff74e802b2d8a96158e47edb8420c..eddb5493ccc2475859c4fc07bcccc45e9d61a92a 100644 (file)
@@ -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