Clean up of `RSpec/LetSetup` within `spec/lib` (#28447)
parent
cd64a5b2ec
commit
c99f88e1a8
|
@ -50,9 +50,6 @@ RSpec/LetSetup:
|
||||||
- 'spec/controllers/auth/confirmations_controller_spec.rb'
|
- 'spec/controllers/auth/confirmations_controller_spec.rb'
|
||||||
- 'spec/controllers/auth/passwords_controller_spec.rb'
|
- 'spec/controllers/auth/passwords_controller_spec.rb'
|
||||||
- 'spec/controllers/auth/sessions_controller_spec.rb'
|
- 'spec/controllers/auth/sessions_controller_spec.rb'
|
||||||
- 'spec/lib/activitypub/activity/delete_spec.rb'
|
|
||||||
- 'spec/lib/vacuum/applications_vacuum_spec.rb'
|
|
||||||
- 'spec/lib/vacuum/preview_cards_vacuum_spec.rb'
|
|
||||||
- 'spec/models/account_statuses_cleanup_policy_spec.rb'
|
- 'spec/models/account_statuses_cleanup_policy_spec.rb'
|
||||||
- 'spec/models/status_spec.rb'
|
- 'spec/models/status_spec.rb'
|
||||||
- 'spec/services/account_statuses_cleanup_service_spec.rb'
|
- 'spec/services/account_statuses_cleanup_service_spec.rb'
|
||||||
|
|
|
@ -50,6 +50,10 @@ RSpec.describe ActivityPub::Activity::Delete do
|
||||||
it 'sends delete activity to followers of rebloggers' do
|
it 'sends delete activity to followers of rebloggers' do
|
||||||
expect(a_request(:post, 'http://example.com/inbox')).to have_been_made.once
|
expect(a_request(:post, 'http://example.com/inbox')).to have_been_made.once
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it 'deletes the reblog' do
|
||||||
|
expect { reblog.reload }.to raise_error(ActiveRecord::RecordNotFound)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -13,11 +13,11 @@ RSpec.describe Vacuum::ApplicationsVacuum do
|
||||||
let!(:unused_app) { Fabricate(:application, created_at: 1.month.ago) }
|
let!(:unused_app) { Fabricate(:application, created_at: 1.month.ago) }
|
||||||
let!(:recent_app) { Fabricate(:application, created_at: 1.hour.ago) }
|
let!(:recent_app) { Fabricate(:application, created_at: 1.hour.ago) }
|
||||||
|
|
||||||
let!(:active_access_token) { Fabricate(:access_token, application: app_with_token) }
|
|
||||||
let!(:active_access_grant) { Fabricate(:access_grant, application: app_with_grant) }
|
|
||||||
let!(:user) { Fabricate(:user, created_by_application: app_with_signup) }
|
|
||||||
|
|
||||||
before do
|
before do
|
||||||
|
Fabricate(:access_token, application: app_with_token)
|
||||||
|
Fabricate(:access_grant, application: app_with_grant)
|
||||||
|
Fabricate(:user, created_by_application: app_with_signup)
|
||||||
|
|
||||||
subject.perform
|
subject.perform
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -30,5 +30,9 @@ RSpec.describe Vacuum::PreviewCardsVacuum do
|
||||||
it 'does not delete attached preview cards' do
|
it 'does not delete attached preview cards' do
|
||||||
expect(new_preview_card.reload).to be_persisted
|
expect(new_preview_card.reload).to be_persisted
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it 'does not delete orphaned preview cards in the retention period' do
|
||||||
|
expect(orphaned_preview_card.reload).to be_persisted
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue