2023-07-12 07:47:08 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-03-04 16:12:09 +00:00
|
|
|
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
|
2024-03-11 08:53:24 +00:00
|
|
|
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)
|
2023-03-04 16:12:09 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|