Prechádzať zdrojové kódy

Fix `RSpec/MetadataStyle` cop in spec/ (#27729)

Matt Jankowski 6 mesiacov pred
rodič
commit
949f5eb860

+ 1 - 1
spec/helpers/application_helper_spec.rb

@@ -89,7 +89,7 @@ describe ApplicationHelper do
     end
   end
 
-  describe 'show_landing_strip?', without_verify_partial_doubles: true do
+  describe 'show_landing_strip?', :without_verify_partial_doubles do
     describe 'when signed in' do
       before do
         allow(helper).to receive(:user_signed_in?).and_return(true)

+ 1 - 1
spec/lib/feed_manager_spec.rb

@@ -10,7 +10,7 @@ RSpec.describe FeedManager do
     end
   end
 
-  it 'tracks at least as many statuses as reblogs', skip_stub: true do
+  it 'tracks at least as many statuses as reblogs', :skip_stub do
     expect(FeedManager::REBLOG_FALLOFF).to be <= FeedManager::MAX_ITEMS
   end
 

+ 1 - 1
spec/models/media_attachment_spec.rb

@@ -2,7 +2,7 @@
 
 require 'rails_helper'
 
-RSpec.describe MediaAttachment, paperclip_processing: true do
+RSpec.describe MediaAttachment, :paperclip_processing do
   describe 'local?' do
     subject { media_attachment.local? }
 

+ 3 - 3
spec/requests/api/v1/media_spec.rb

@@ -127,19 +127,19 @@ RSpec.describe 'Media' do
       end
     end
 
-    context 'with image/jpeg', paperclip_processing: true do
+    context 'with image/jpeg', :paperclip_processing do
       let(:params) { { file: fixture_file_upload('attachment.jpg', 'image/jpeg'), description: 'jpeg image' } }
 
       it_behaves_like 'a successful media upload', 'image'
     end
 
-    context 'with image/gif', paperclip_processing: true do
+    context 'with image/gif', :paperclip_processing do
       let(:params) { { file: fixture_file_upload('attachment.gif', 'image/gif') } }
 
       it_behaves_like 'a successful media upload', 'image'
     end
 
-    context 'with video/webm', paperclip_processing: true do
+    context 'with video/webm', :paperclip_processing do
       let(:params) { { file: fixture_file_upload('attachment.webm', 'video/webm') } }
 
       it_behaves_like 'a successful media upload', 'gifv'

+ 1 - 1
spec/requests/api/v2/media_spec.rb

@@ -2,7 +2,7 @@
 
 require 'rails_helper'
 
-RSpec.describe 'Media API', paperclip_processing: true do
+RSpec.describe 'Media API', :paperclip_processing do
   let(:user)    { Fabricate(:user) }
   let(:token)   { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: scopes) }
   let(:scopes)  { 'write' }

+ 2 - 2
spec/support/examples/models/concerns/account_avatar.rb

@@ -1,7 +1,7 @@
 # frozen_string_literal: true
 
 shared_examples 'AccountAvatar' do |fabricator|
-  describe 'static avatars', paperclip_processing: true do
+  describe 'static avatars', :paperclip_processing do
     describe 'when GIF' do
       it 'creates a png static style' do
         account = Fabricate(fabricator, avatar: attachment_fixture('avatar.gif'))
@@ -17,7 +17,7 @@ shared_examples 'AccountAvatar' do |fabricator|
     end
   end
 
-  describe 'base64-encoded files', paperclip_processing: true do
+  describe 'base64-encoded files', :paperclip_processing do
     let(:base64_attachment) { "data:image/jpeg;base64,#{Base64.encode64(attachment_fixture('attachment.jpg').read)}" }
     let(:account) { Fabricate(fabricator, avatar: base64_attachment) }
 

+ 1 - 1
spec/support/examples/models/concerns/account_header.rb

@@ -1,7 +1,7 @@
 # frozen_string_literal: true
 
 shared_examples 'AccountHeader' do |fabricator|
-  describe 'base64-encoded files', paperclip_processing: true do
+  describe 'base64-encoded files', :paperclip_processing do
     let(:base64_attachment) { "data:image/jpeg;base64,#{Base64.encode64(attachment_fixture('attachment.jpg').read)}" }
     let(:account) { Fabricate(fabricator, header: base64_attachment) }
 

+ 1 - 1
spec/views/statuses/show.html.haml_spec.rb

@@ -2,7 +2,7 @@
 
 require 'rails_helper'
 
-describe 'statuses/show.html.haml', without_verify_partial_doubles: true do
+describe 'statuses/show.html.haml', :without_verify_partial_doubles do
   before do
     allow(view).to receive_messages(api_oembed_url: '', show_landing_strip?: true, site_title: 'example site', site_hostname: 'example.com', full_asset_url: '//asset.host/image.svg', current_account: nil, single_user_mode?: false)
     allow(view).to receive(:local_time)