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/uploaders')
-rw-r--r--spec/uploaders/favicon_uploader_spec.rb11
1 files changed, 1 insertions, 10 deletions
diff --git a/spec/uploaders/favicon_uploader_spec.rb b/spec/uploaders/favicon_uploader_spec.rb
index b521670addb..db8a3207f4d 100644
--- a/spec/uploaders/favicon_uploader_spec.rb
+++ b/spec/uploaders/favicon_uploader_spec.rb
@@ -19,20 +19,11 @@ RSpec.describe FaviconUploader do
end
it 'has the correct format' do
- expect(uploader.favicon_main).to be_format('ico')
+ expect(uploader.favicon_main).to be_format('png')
end
it 'has the correct dimensions' do
expect(uploader.favicon_main).to have_dimensions(32, 32)
end
-
- it 'generates all the status icons' do
- # make sure that the following each statement actually loops
- expect(FaviconUploader::STATUS_ICON_NAMES.count).to eq 10
-
- FaviconUploader::STATUS_ICON_NAMES.each do |status_name|
- expect(File.exist?(uploader.favicon_status_not_found.file.file)).to be true
- end
- end
end
end