summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2016-05-21 06:50:38 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2016-05-21 06:50:38 +0000
commit6edda2fd2f036067c9872671a1958c6bfff33095 (patch)
tree32f23fc73b7558d5ff37b88b01c4849fa439dae9 /test
parent8e8b4ce8f407e240cc611df396496a350e7cc532 (diff)
downloadredmine-6edda2fd2f036067c9872671a1958c6bfff33095.tar.gz
redmine-6edda2fd2f036067c9872671a1958c6bfff33095.zip
Merged r15416 (#22808).
git-svn-id: http://svn.redmine.org/redmine/branches/3.1-stable@15420 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r--test/functional/issues_controller_test.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb
index d196e6c7d..c39b1d287 100644
--- a/test/functional/issues_controller_test.rb
+++ b/test/functional/issues_controller_test.rb
@@ -273,6 +273,22 @@ class IssuesControllerTest < ActionController::TestCase
assert_not_nil assigns(:issue_count_by_group)
end
+ def test_index_with_query_grouped_and_sorted_by_fixed_version
+ get :index, :project_id => 1, :set_filter => 1, :group_by => "fixed_version", :sort => "fixed_version"
+ assert_response :success
+ assert_template 'index'
+ assert_not_nil assigns(:issues)
+ assert_not_nil assigns(:issue_count_by_group)
+ end
+
+ def test_index_with_query_grouped_and_sorted_by_fixed_version_in_reverse_order
+ get :index, :project_id => 1, :set_filter => 1, :group_by => "fixed_version", :sort => "fixed_version:desc"
+ assert_response :success
+ assert_template 'index'
+ assert_not_nil assigns(:issues)
+ assert_not_nil assigns(:issue_count_by_group)
+ end
+
def test_index_with_query_grouped_by_list_custom_field
get :index, :project_id => 1, :query_id => 9
assert_response :success