mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	Co-authored-by: Vishnu Narayanan <vishnu@chatwoot.com> Co-authored-by: Sojan <sojan@pepalo.com> Co-authored-by: tds-1 <tanmay@qoala.id> Co-authored-by: Shivam Mishra <scm.mymail@gmail.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			480 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			480 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
module TestData
 | 
						|
  def self.generate
 | 
						|
    Orchestrator.call
 | 
						|
  end
 | 
						|
 | 
						|
  def self.cleanup
 | 
						|
    CleanupService.call
 | 
						|
  end
 | 
						|
end
 | 
						|
 | 
						|
require_relative 'test_data/constants'
 | 
						|
require_relative 'test_data/database_optimizer'
 | 
						|
require_relative 'test_data/cleanup_service'
 | 
						|
require_relative 'test_data/account_creator'
 | 
						|
require_relative 'test_data/inbox_creator'
 | 
						|
require_relative 'test_data/display_id_tracker'
 | 
						|
require_relative 'test_data/contact_batch_service'
 | 
						|
require_relative 'test_data/orchestrator'
 |