diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2022-09-11 18:10:42 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2022-09-11 18:10:42 +0000 |
commit | dd174e8f6a3be398155978ac55836e69a67c0585 (patch) | |
tree | 9d44a96d1d6cd6dd739aa74954a5341aa348ba3c /spec/routing | |
parent | b8f2bd7587f656a04f8489e235bae7c6bd93d11c (diff) | |
download | gitlab-ce-dd174e8f6a3be398155978ac55836e69a67c0585.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/routing')
-rw-r--r-- | spec/routing/group_routing_spec.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/routing/group_routing_spec.rb b/spec/routing/group_routing_spec.rb index 9f5f821cc61..ae69b222280 100644 --- a/spec/routing/group_routing_spec.rb +++ b/spec/routing/group_routing_spec.rb @@ -71,6 +71,10 @@ RSpec.shared_examples 'groups routing' do it 'routes to the harbor tags controller' do expect(get("groups/#{group_path}/-/harbor/repositories/test/artifacts/test/tags")).to route_to('groups/harbor/tags#index', group_id: group_path, repository_id: 'test', artifact_id: 'test') end + + it 'routes to the observability controller' do + expect(get("groups/#{group_path}/-/observability")).to route_to('groups/observability#index', group_id: group_path) + end end RSpec.describe "Groups", "routing" do |