diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-07-31 21:10:12 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-07-31 21:10:12 +0000 |
commit | 8bb9ee876910bf5a14e116ace9ec95791486a78a (patch) | |
tree | 7e2ad1f15f11dcbb5b45b2a581b7d720c272885d /spec/routing | |
parent | 04338021ada9669bcf8d6cf2d35b0debf50e8cc1 (diff) | |
download | gitlab-ce-8bb9ee876910bf5a14e116ace9ec95791486a78a.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/routing')
-rw-r--r-- | spec/routing/routing_spec.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/spec/routing/routing_spec.rb b/spec/routing/routing_spec.rb index 024d4d467a7..af4becd980b 100644 --- a/spec/routing/routing_spec.rb +++ b/spec/routing/routing_spec.rb @@ -115,7 +115,6 @@ end # help GET /help(.:format) help#index # help_page GET /help/*path(.:format) help#show # help_shortcuts GET /help/shortcuts(.:format) help#shortcuts -# help_ui GET /help/ui(.:format) help#ui RSpec.describe HelpController, "routing" do it "to #index" do expect(get("/help")).to route_to('help#index') @@ -131,9 +130,6 @@ RSpec.describe HelpController, "routing" do expect(get(path)).to route_to('help#show', path: 'workflow/protected_branches/protected_branches1', format: 'png') - - path = '/help/ui' - expect(get(path)).to route_to('help#ui') end end |