mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 02:57:57 +00:00 
			
		
		
		
	 c74b5c21d7
			
		
	
	c74b5c21d7
	
	
	
		
			
			* Feature: Introduce Super Admins - added new devise model for super user - added administrate gem - sample dashboards for users and accounts Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
		
			
				
	
	
		
			27 lines
		
	
	
		
			739 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			739 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require 'rails_helper'
 | |
| 
 | |
| RSpec.describe 'Super Admin Users API', type: :request do
 | |
|   let(:super_admin) { create(:super_admin) }
 | |
| 
 | |
|   describe 'GET /super_admin/users' do
 | |
|     context 'when it is an unauthenticated super admin' do
 | |
|       it 'returns unauthorized' do
 | |
|         get '/super_admin/'
 | |
|         expect(response).to have_http_status(:redirect)
 | |
|       end
 | |
|     end
 | |
| 
 | |
|     context 'when it is an authenticated super admin' do
 | |
|       let!(:user) { create(:user) }
 | |
| 
 | |
|       it 'shows the list of users' do
 | |
|         sign_in super_admin
 | |
|         get '/super_admin'
 | |
|         expect(response).to have_http_status(:success)
 | |
|         expect(response.body).to include('New user')
 | |
|         expect(response.body).to include(user.name)
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 |