mirror of
				https://github.com/scinote-eln/scinote-web.git
				synced 2025-11-04 12:07:23 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			297 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			297 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
FactoryBot.define do
 | 
						|
  factory :repository_snapshot do
 | 
						|
    name { original_repository.name }
 | 
						|
    status { :ready }
 | 
						|
    created_by { original_repository.created_by }
 | 
						|
    team { original_repository.team }
 | 
						|
    original_repository { repository }
 | 
						|
    my_module
 | 
						|
  end
 | 
						|
end
 |