Admin controllers specs (#23917)
This commit is contained in:
		
					parent
					
						
							
								ad585fb195
							
						
					
				
			
			
				commit
				
					
						42ddc45133
					
				
			
		
					 20 changed files with 428 additions and 0 deletions
				
			
		
							
								
								
									
										23
									
								
								spec/controllers/admin/webhooks/secrets_controller_spec.rb
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								spec/controllers/admin/webhooks/secrets_controller_spec.rb
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,23 @@ | |||
| # frozen_string_literal: true | ||||
| 
 | ||||
| require 'rails_helper' | ||||
| 
 | ||||
| describe Admin::Webhooks::SecretsController do | ||||
|   render_views | ||||
| 
 | ||||
|   let(:user) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')) } | ||||
| 
 | ||||
|   before do | ||||
|     sign_in user, scope: :user | ||||
|   end | ||||
| 
 | ||||
|   describe 'POST #rotate' do | ||||
|     let(:webhook) { Fabricate(:webhook) } | ||||
| 
 | ||||
|     it 'returns http success' do | ||||
|       post :rotate, params: { webhook_id: webhook.id } | ||||
| 
 | ||||
|       expect(response).to redirect_to(admin_webhook_path(webhook)) | ||||
|     end | ||||
|   end | ||||
| end | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue