Remove Sidekiq::Testing in RepositoryController spec

This commit is contained in:
Dylan Griffith 2018-12-07 12:16:48 +01:00 committed by Bob Van Landuyt
parent 5d9a2e3b1e
commit f31429c1f6
1 changed files with 6 additions and 4 deletions

View File

@ -19,13 +19,15 @@ describe Projects::Settings::RepositoryController do
end end
describe 'PUT cleanup' do describe 'PUT cleanup' do
before do
allow(RepositoryCleanupWorker).to receive(:perform_async)
end
def do_put! def do_put!
object_map = fixture_file_upload('spec/fixtures/bfg_object_map.txt') object_map = fixture_file_upload('spec/fixtures/bfg_object_map.txt')
Sidekiq::Testing.fake! do
put :cleanup, namespace_id: project.namespace, project_id: project, project: { object_map: object_map } put :cleanup, namespace_id: project.namespace, project_id: project, project: { object_map: object_map }
end end
end
context 'feature enabled' do context 'feature enabled' do
it 'enqueues a RepositoryCleanupWorker' do it 'enqueues a RepositoryCleanupWorker' do
@ -34,7 +36,7 @@ describe Projects::Settings::RepositoryController do
do_put! do_put!
expect(response).to redirect_to project_settings_repository_path(project) expect(response).to redirect_to project_settings_repository_path(project)
expect(RepositoryCleanupWorker.jobs.count).to eq(1) expect(RepositoryCleanupWorker).to have_received(:perform_async).once
end end
end end