Factory Bot ♥ Rails
Go to file
Edu Depetris 57e88e79bf
Fix style link in CONTRIBUTING.md [ci skip] (#402)
2022-07-29 16:24:02 -03:00
.github/ISSUE_TEMPLATE Update issue templates [ci skip] 2020-04-17 12:26:58 -04:00
bin Add bin/setup, improve contributing guidelines 2014-05-27 00:41:28 -07:00
features Skip Spring version 2.1.1 (#389) 2021-01-11 23:06:27 -05:00
gemfiles Unlock cucumber version 2021-05-26 20:10:18 -04:00
lib Set up reloading after_initialize 2020-06-15 11:15:46 -04:00
spec Set up reloading after_initialize 2020-06-15 11:15:46 -04:00
.gitignore Avoid committing factory_bot_rails-*.gem files 2019-01-11 15:51:58 -05:00
.hound.yml Configure Hound to use custom .rubocop.yml 2018-10-07 22:49:48 -04:00
.rspec Allow reloading of factory definitions 2018-09-08 02:21:47 +00:00
.travis.yml Run tests on Ruby 3.0 (#390) 2021-01-13 08:46:26 -05:00
Appraisals Test against Rails 6.1 (#388) 2021-01-12 21:11:20 -05:00
CODE_OF_CONDUCT.md Add standard thoughtbot CODE_OF_CONDUCT.md 2018-09-07 22:16:06 -04:00
CONTRIBUTING.md Fix style link in CONTRIBUTING.md [ci skip] (#402) 2022-07-29 16:24:02 -03:00
Gemfile Unlock cucumber version 2021-05-26 20:10:18 -04:00
Gemfile.lock Unlock cucumber version 2021-05-26 20:10:18 -04:00
LICENSE Update license year 2020-01-10 11:10:36 -07:00
NEWS.md Bump version to v.6.2.0 [ci skip] 2021-05-07 13:39:52 -04:00
README.md Remove Hound badge [ci skip] 2020-06-20 00:28:04 -04:00
RELEASING.md Fix Markdown formatting 2019-02-26 12:20:36 -05:00
Rakefile Run standard on CI 2020-06-10 17:13:56 -04:00
cucumber.yml Silence cucumber publish prompt 2021-05-27 08:40:45 -04:00
factory_bot_rails.gemspec Bump version to v.6.2.0 [ci skip] 2021-05-07 13:39:52 -04:00

README.md

factory_bot_rails Build Status Code Climate Gem Version

factory_bot is a fixtures replacement with a straightforward definition syntax, support for multiple build strategies (saved instances, unsaved instances, attribute hashes, and stubbed objects), and support for multiple factories for the same class (user, admin_user, and so on), including factory inheritance.

Transitioning from factory_girl_rails?

Check out the guide.

Rails

factory_bot_rails provides Rails integration for factory_bot.

Supported Rails versions are listed in Appraisals. Supported Ruby versions are listed in .travis.yml.

Download

Github: http://github.com/thoughtbot/factory_bot_rails

Gem:

$ gem install factory_bot_rails

Configuration

Add factory_bot_rails to your Gemfile in both the test and development groups:

group :development, :test do
  gem 'factory_bot_rails'
end

You may want to configure your test suite to include factory_bot methods; see configuration.

Automatic Factory Definition Loading

By default, factory_bot_rails will automatically load factories defined in the following locations, relative to the root of the Rails project:

factories.rb
test/factories.rb
spec/factories.rb
factories/*.rb
test/factories/*.rb
spec/factories/*.rb

You can configure by adding the following to config/application.rb or the appropriate environment configuration in config/environments:

config.factory_bot.definition_file_paths = ["custom/factories"]

This will cause factory_bot_rails to automatically load factories in custom/factories.rb and custom/factories/*.rb.

It is possible to use this setting to share factories from a gem:

begin
  require 'factory_bot_rails'
rescue LoadError
end

class MyEngine < ::Rails::Engine
  config.factory_bot.definition_file_paths +=
    [File.expand_path('../factories', __FILE__)] if defined?(FactoryBotRails)
end

You can also disable automatic factory definition loading entirely by using an empty array:

config.factory_bot.definition_file_paths = []

Generators

Including factory_bot_rails in the development group of your Gemfile will cause Rails to generate factories instead of fixtures. If you want to disable this feature, you can either move factory_bot_rails out of the development group of your Gemfile, or add the following configuration:

config.generators do |g|
  g.factory_bot false
end

If fixture replacement is enabled and you already have a test/factories.rb file (or spec/factories.rb if using rspec_rails), generated factories will be inserted at the top of the existing file. Otherwise, factories will be generated in the test/factories directory (spec/factories if using rspec_rails), in a file matching the name of the table (e.g. test/factories/users.rb).

To generate factories in a different directory, you can use the following configuration:

config.generators do |g|
  g.factory_bot dir: 'custom/dir/for/factories'
end

Note that factory_bot_rails will not automatically load files in custom locations unless you add them to config.factory_bot.definition_file_paths as well.

The suffix option allows you to customize the name of the generated file with a suffix:

config.generators do |g|
  g.factory_bot suffix: "factory"
end

This will generate test/factories/users_factory.rb instead of test/factories/users.rb.

For even more customization, use the filename_proc option:

config.generators do |g|
  g.factory_bot filename_proc: ->(table_name) { "prefix_#{table_name}_suffix" }
end

To override the default factory template, define your own template in lib/templates/factory_bot/model/factories.erb. This template will have access to any methods available in FactoryBot::Generators::ModelGenerator. Note that factory_bot_rails will only use this custom template if you are generating each factory in a separate file; it will have no effect if you are generating all of your factories in test/factories.rb or spec/factories.rb.

Contributing

Please see CONTRIBUTING.md.

factory_bot_rails was originally written by Joe Ferris and is maintained by thoughtbot. Many improvements and bugfixes were contributed by the open source community.

License

factory_bot_rails is Copyright © 2008-2020 Joe Ferris and thoughtbot. It is free software, and may be redistributed under the terms specified in the LICENSE file.

About thoughtbot

thoughtbot

factory_bot_rails is maintained and funded by thoughtbot, inc. The names and logos for thoughtbot are trademarks of thoughtbot, inc.

We are passionate about open source software. See our other projects. We are available for hire.