Factories spec refactoring after #1616
This commit is contained in:
parent
b5f9d29f55
commit
dc22dd8ade
1 changed files with 3 additions and 1 deletions
|
@ -1,7 +1,9 @@
|
|||
require 'spec_helper'
|
||||
|
||||
INVALID_FACTORIES = [:key_with_a_space_in_the_middle]
|
||||
|
||||
FactoryGirl.factories.map(&:name).each do |factory_name|
|
||||
next if :key_with_a_space_in_the_middle == factory_name
|
||||
next if INVALID_FACTORIES.include?(factory_name)
|
||||
describe "#{factory_name} factory" do
|
||||
it 'should be valid' do
|
||||
build(factory_name).should be_valid
|
||||
|
|
Loading…
Reference in a new issue