Welcome to mirror list, hosted at ThFree Co, Russian Federation.

factories_spec.rb « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ee7354688a606f625455fef76e9b9ce5f9578c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'spec_helper'

INVALID_FACTORIES = [:key_with_a_space_in_the_middle]

FactoryGirl.factories.map(&:name).each do |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
    end
  end
end