mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 03:08:35 +08:00
4ea21fa2d0
This change both speeds up specs (less strings to allocate) and helps catch cases where methods in Discourse are mutating inputs. Overall we will be migrating everything to use #frozen_string_literal: true it will take a while, but this is the first and safest move in this direction
37 lines
999 B
Ruby
37 lines
999 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe UserExport do
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
describe '.remove_old_exports' do
|
|
it 'should remove the right records' do
|
|
csv_file_1 = Fabricate(:upload, created_at: 3.days.ago)
|
|
export = UserExport.create!(
|
|
file_name: "test",
|
|
user: user,
|
|
upload_id: csv_file_1.id,
|
|
created_at: 3.days.ago
|
|
)
|
|
|
|
csv_file_2 = Fabricate(:upload, created_at: 1.day.ago)
|
|
export2 = UserExport.create!(
|
|
file_name: "test2",
|
|
user: user,
|
|
upload_id: csv_file_2.id,
|
|
created_at: 1.day.ago
|
|
)
|
|
|
|
expect do
|
|
UserExport.remove_old_exports
|
|
end.to change { UserExport.count }.by(-1)
|
|
|
|
expect(UserExport.exists?(id: export.id)).to eq(false)
|
|
expect(Upload.exists?(id: csv_file_1.id)).to eq(false)
|
|
expect(UserExport.exists?(id: export2.id)).to eq(true)
|
|
expect(Upload.exists?(id: csv_file_2.id)).to eq(true)
|
|
end
|
|
end
|
|
end
|