Sha256: 5d987cf82f6200e5730a0842ccbdb65ad53ef7524d4b52d2c5bc14691550ded5
Contents?: true
Size: 818 Bytes
Versions: 157
Compression:
Stored size: 818 Bytes
Contents
module FactoryGirl class << self # An Array of strings specifying locations that should be searched for # factory definitions. By default, factory_girl 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 #:nodoc: 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.exists?("#{path}.rb") if File.directory? path Dir[File.join(path, '**', '*.rb')].sort.each do |file| load file end end end end end
Version data entries
157 entries across 102 versions & 7 rubygems