summaryrefslogtreecommitdiffstats
path: root/test/functional
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2009-11-27 19:56:09 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2009-11-27 19:56:09 +0000
commitae082205e21e56dca3dccbdf72320528467e74fd (patch)
tree00c73e7a7f0f5addc447d9fca31f4bddfe73734f /test/functional
parent43fd27fd0ce4111501c36a6ef162aed61bf3318c (diff)
downloadredmine-ae082205e21e56dca3dccbdf72320528467e74fd.tar.gz
redmine-ae082205e21e56dca3dccbdf72320528467e74fd.zip
Add failing test for #4302.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3096 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional')
-rw-r--r--test/functional/issues_controller_test.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb
index 7356b130b..da6e1de68 100644
--- a/test/functional/issues_controller_test.rb
+++ b/test/functional/issues_controller_test.rb
@@ -193,6 +193,11 @@ class IssuesControllerTest < ActionController::TestCase
assert_not_nil count_by_group['MySQL']
end
+ def test_index_sort_by_field_not_included_in_columns
+ Setting.issue_list_default_columns = %w(subject author)
+ get :index, :sort => 'tracker'
+ end
+
def test_index_csv_with_project
Setting.default_language = 'en'