mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 11:03:40 +08:00
493d437e79
* Remove outdated option
04078317ba
* Use the non-globally exposed RSpec syntax
https://github.com/rspec/rspec-core/pull/2803
* Use the non-globally exposed RSpec syntax, cont
https://github.com/rspec/rspec-core/pull/2803
* Comply to strict predicate matchers
See:
- https://github.com/rspec/rspec-expectations/pull/1195
- https://github.com/rspec/rspec-expectations/pull/1196
- https://github.com/rspec/rspec-expectations/pull/1277
18 lines
730 B
Ruby
18 lines
730 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe Jobs::CleanUpAssociatedAccounts do
|
|
subject { Jobs::CleanUpAssociatedAccounts.new.execute({}) }
|
|
|
|
it "deletes the correct records" do
|
|
freeze_time
|
|
|
|
last_week = UserAssociatedAccount.create!(provider_name: "twitter", provider_uid: "1", updated_at: 7.days.ago)
|
|
today = UserAssociatedAccount.create!(provider_name: "twitter", provider_uid: "12", updated_at: 12.hours.ago)
|
|
connected = UserAssociatedAccount.create!(provider_name: "twitter", provider_uid: "123", user: Fabricate(:user), updated_at: 12.hours.ago)
|
|
|
|
expect { subject }.to change { UserAssociatedAccount.count }.by(-1)
|
|
expect(UserAssociatedAccount.all).to contain_exactly(today, connected)
|
|
end
|
|
|
|
end
|