mirror of
				https://github.com/lunaisnotaboy/mastodon.git
				synced 2025-10-30 19:45:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			316 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			316 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require 'rails_helper'
 | |
| 
 | |
| Fabrication.manager.load_definitions if Fabrication.manager.empty?
 | |
| 
 | |
| Fabrication.manager.schematics.map(&:first).each do |factory_name|
 | |
|   describe "The #{factory_name} factory" do
 | |
|     it 'is valid' do
 | |
|       factory = Fabricate(factory_name)
 | |
|       expect(factory).to be_valid
 | |
|     end
 | |
|   end
 | |
| end
 |