Sha256: 411dd9f64a35ed8f789c2a8cc21f44c663c8016a86c983add0015e673d8565ba
Contents?: true
Size: 707 Bytes
Versions: 2
Compression:
Stored size: 707 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: definition_file_paths.each do |path| require("#{path}.rb") if File.exists?("#{path}.rb") if File.directory? path Dir[File.join(path, '*.rb')].sort.each do |file| require file end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
factory_girl_kibiz0r-2.0.0.beta3 | lib/factory_girl/find_definitions.rb |
factory_girl_kibiz0r-2.0.0.beta2 | lib/factory_girl/find_definitions.rb |