mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
c716ce01b4
Also: add a deprecation warning to factory_girl, asking users to switch to factory_bot https://github.com/thoughtbot/factory_girl/issues/921
25 lines
806 B
Ruby
25 lines
806 B
Ruby
module FactoryBot
|
|
class << self
|
|
# An Array of strings specifying locations that should be searched for
|
|
# factory definitions. By default, factory_bot will attempt to require
|
|
# "factories", "test/factories" and "spec/factories". Only the first
|
|
# existing file will be loaded.
|
|
attr_accessor :definition_file_paths
|
|
end
|
|
|
|
self.definition_file_paths = %w(factories test/factories spec/factories)
|
|
|
|
def self.find_definitions
|
|
absolute_definition_file_paths = definition_file_paths.map { |path| File.expand_path(path) }
|
|
|
|
absolute_definition_file_paths.uniq.each do |path|
|
|
load("#{path}.rb") if File.exist?("#{path}.rb")
|
|
|
|
if File.directory? path
|
|
Dir[File.join(path, '**', '*.rb')].sort.each do |file|
|
|
load file
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|