You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
316 B
13 lines
316 B
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
|