Remove Sidekiq::Testing in RepositoryController spec
This commit is contained in:
		
							parent
							
								
									5d9a2e3b1e
								
							
						
					
					
						commit
						f31429c1f6
					
				|  | @ -19,12 +19,14 @@ 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 | ||||||
|  | @ -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 | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue