mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 02:57:57 +00:00 
			
		
		
		
	 b2d5cc7b05
			
		
	
	b2d5cc7b05
	
	
	
		
			
			Co-authored-by: Pranav Raj S <pranavrajs@gmail.com> Co-authored-by: Sojan Jose <sojan@pepalo.com>
		
			
				
	
	
		
			14 lines
		
	
	
		
			356 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			356 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require 'rails_helper'
 | |
| 
 | |
| RSpec.describe AgentBotInbox, type: :model do
 | |
|   describe 'validations' do
 | |
|     it { is_expected.to validate_presence_of(:inbox_id) }
 | |
|     it { is_expected.to validate_presence_of(:agent_bot_id) }
 | |
|   end
 | |
| 
 | |
|   describe 'associations' do
 | |
|     it { is_expected.to belong_to(:agent_bot) }
 | |
|     it { is_expected.to belong_to(:inbox) }
 | |
|   end
 | |
| end
 |