Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/views/projects/edit.html.haml_spec.rb')
-rw-r--r--spec/views/projects/edit.html.haml_spec.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/spec/views/projects/edit.html.haml_spec.rb b/spec/views/projects/edit.html.haml_spec.rb
index 8c1a8cf21d0..127dbf18a0a 100644
--- a/spec/views/projects/edit.html.haml_spec.rb
+++ b/spec/views/projects/edit.html.haml_spec.rb
@@ -111,4 +111,30 @@ RSpec.describe 'projects/edit' do
expect(rendered).to have_content(_('GitLab Pages has moved'))
end
end
+
+ describe 'notifications on renaming the project path' do
+ context 'when the GitlabAPI is supported' do
+ before do
+ allow(ContainerRegistry::GitlabApiClient).to receive(:supports_gitlab_api?).and_return(true)
+ end
+
+ it 'displays the warning regarding the container registry' do
+ render
+
+ expect(rendered).to have_content('new uploads to the container registry are blocked')
+ end
+ end
+
+ context 'when the GitlabAPI is not supported' do
+ before do
+ allow(ContainerRegistry::GitlabApiClient).to receive(:supports_gitlab_api?).and_return(false)
+ end
+
+ it 'does not display the warning regarding the container registry' do
+ render
+
+ expect(rendered).not_to have_content('new uploads to the container registry are blocked')
+ end
+ end
+ end
end