This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2023-07-12 09:47:08 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-03-04 17:12:09 +01: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
|
|
|
|
it 'is valid' do
|
|
|
|
factory = Fabricate(factory_name)
|
|
|
|
expect(factory).to be_valid
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|