factory_girl

https://github.com/thoughtbot/factory_girl

Ruby

A library for setting up Ruby objects as test data.

FactoryGirl.definition_file_paths=

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.

Source | Google | Stack overflow

Edit

git clone [email protected]:thoughtbot/factory_girl.git

cd factory_girl

open lib/factory_girl/find_definitions.rb

Contribute

# Make a new branch

git checkout -b -your-name--update-docs-FactoryGirl-definition_file_paths--for-pr


# Commit to git

git add lib/factory_girl/find_definitions.rbgit commit -m "better docs for FactoryGirl.definition_file_paths="


# Open pull request

gem install hub # on a mac you can `brew install hub`

hub fork

git push <your name> -your-name--update-docs-FactoryGirl-definition_file_paths--for-pr

hub pull-request


# Celebrate!