mirror of
				https://github.com/scinote-eln/scinote-web.git
				synced 2025-11-01 00:56:05 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			281 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			281 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| FactoryBot.define do
 | |
|   factory :repository_row_connection do
 | |
|     association :parent, factory: :repository_row
 | |
|     association :child, factory: :repository_row
 | |
|     association :created_by, factory: :user
 | |
|     last_modified_by { created_by }
 | |
|   end
 | |
| end
 |