From: Jean-Philippe Lang Date: Mon, 21 May 2012 16:55:48 +0000 (+0000) Subject: Fixed that columns selection in not displayed on the custom query form (#10972). X-Git-Tag: 2.1.0~527 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1ab9e42b9be7c46c97ad77fa275c919928d183b8;p=redmine.git Fixed that columns selection in not displayed on the custom query form (#10972). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9702 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/queries/_form.html.erb b/app/views/queries/_form.html.erb index cee8fbaa8..ba8c58070 100644 --- a/app/views/queries/_form.html.erb +++ b/app/views/queries/_form.html.erb @@ -44,7 +44,7 @@ <% end %> -<% content_tag 'fieldset', :id => 'columns', :style => (query.has_default_columns? ? 'display:none;' : nil) do %> +<%= content_tag 'fieldset', :id => 'columns', :style => (query.has_default_columns? ? 'display:none;' : nil) do %> <%= l(:field_column_names) %> <%= render :partial => 'queries/columns', :locals => {:query => query}%> <% end %> diff --git a/test/functional/queries_controller_test.rb b/test/functional/queries_controller_test.rb index b9e4f417c..7cd823e6f 100644 --- a/test/functional/queries_controller_test.rb +++ b/test/functional/queries_controller_test.rb @@ -36,6 +36,10 @@ class QueriesControllerTest < ActionController::TestCase :name => 'query_is_for_all', :checked => nil, :disabled => nil } + assert_select 'select[name=?]', 'c[]' do + assert_select 'option[value=tracker]' + assert_select 'option[value=subject]' + end end def test_new_global_query