0
0
Fork 0

Ensure unique values in fabricators (#29515)

This commit is contained in:
Matt Jankowski 2024-03-11 04:53:24 -04:00 committed by GitHub
parent 6f8ec6d7f8
commit 98ef38e34e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 6 additions and 6 deletions

View file

@ -6,9 +6,9 @@ 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
it 'is able to create valid records' do
records = Fabricate.times(2, factory_name) # Create multiple of each to uncover uniqueness issues
expect(records).to all(be_valid)
end
end
end