diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-07-10 16:47:49 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-07-10 16:47:49 +0000 |
commit | 5d31eb2495c2c2cce3ab83867f0d2d01e5d1693c (patch) | |
tree | 18738bf1b51e036c2253641cebb148cac0b23dfb /test/integration/issues_test.rb | |
parent | 21c4665e2a35213dea99dcf3562ea8a89b3c7c81 (diff) | |
download | redmine-5d31eb2495c2c2cce3ab83867f0d2d01e5d1693c.tar.gz redmine-5d31eb2495c2c2cce3ab83867f0d2d01e5d1693c.zip |
Don't generate pagination links with params.
git-svn-id: http://svn.redmine.org/redmine/trunk@15627 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration/issues_test.rb')
-rw-r--r-- | test/integration/issues_test.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/integration/issues_test.rb b/test/integration/issues_test.rb index fb8000204..5d94a57bc 100644 --- a/test/integration/issues_test.rb +++ b/test/integration/issues_test.rb @@ -135,11 +135,11 @@ class IssuesTest < Redmine::IntegrationTest end end - def test_pagination_links_on_index_without_project_id_in_url + def test_pagination_links_should_preserve_query_parameters with_settings :per_page_options => '2' do - get '/issues', :project_id => 'ecookbook' - - assert_select 'a[href=?]', '/projects/ecookbook/issues?page=2', :text => '2' + get '/projects/ecookbook/issues?foo=bar' + + assert_select 'a[href=?]', '/projects/ecookbook/issues?foo=bar&page=2', :text => '2' end end |