summaryrefslogtreecommitdiff
path: root/engines/support/test
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2014-07-05 12:49:44 +0200
committerAzul <azul@leap.se>2014-07-09 13:26:36 +0200
commitc8fc45c21d72837d5a6bd41ffca18b3ac52a305f (patch)
treea2cd0bb6bf2d17a072e1bc4b2a4b626493b7c95e /engines/support/test
parent915573311a92df28ba370326542589982aa6febc (diff)
stay on all tickets view when sorting (#5879)
When an admin sorted the tickets view in a different order it would take them to their own tickets list before
Diffstat (limited to 'engines/support/test')
-rw-r--r--engines/support/test/integration/navigation_test.rb19
1 files changed, 15 insertions, 4 deletions
diff --git a/engines/support/test/integration/navigation_test.rb b/engines/support/test/integration/navigation_test.rb
index eec8c0e..1cf5825 100644
--- a/engines/support/test/integration/navigation_test.rb
+++ b/engines/support/test/integration/navigation_test.rb
@@ -1,9 +1,20 @@
require 'test_helper'
-class NavigationTest < ActionDispatch::IntegrationTest
+class NavigationTest < BrowserIntegrationTest
- # test "the truth" do
- # assert true
- # end
+ #
+ # this is a regression test for #5879
+ #
+ test "admin can navigate all tickets" do
+ login
+ with_config admins: [@user.login] do
+ visit '/'
+ click_on 'Tickets'
+ click_on 'Created at'
+ uri = URI.parse(current_url)
+ assert_equal '/tickets', uri.path
+ assert_equal 'open_status=open&sort_order=created_at_desc', uri.query
+ end
+ end
end