2020-06-20 00:28:04 -04:00
# factory_bot_rails [![Build Status][ci-image]][ci] [![Code Climate][grade-image]][grade] [![Gem Version][version-image]][version]
2010-06-09 11:42:48 -04:00
2016-12-02 10:25:09 -05:00
[factory_bot][fb] is a fixtures replacement with a straightforward definition
2010-06-09 11:42:48 -04:00
syntax, support for multiple build strategies (saved instances, unsaved
instances, attribute hashes, and stubbed objects), and support for multiple
2013-02-08 15:27:10 -05:00
factories for the same class (`user`, `admin_user` , and so on), including factory
2010-06-09 11:42:48 -04:00
inheritance.
2017-10-21 14:30:20 -04:00
### Transitioning from factory\_girl\_rails?
2017-11-01 15:20:49 -04:00
Check out the [guide ](https://github.com/thoughtbot/factory_bot/blob/4-9-0-stable/UPGRADE_FROM_FACTORY_GIRL.md ).
2017-10-21 14:30:20 -04:00
2014-07-25 16:26:52 -04:00
## Rails
2010-06-09 11:42:48 -04:00
2018-09-14 15:39:03 -04:00
factory\_bot\_rails provides Rails integration for [factory_bot][fb].
2010-06-09 11:42:48 -04:00
2014-05-26 23:39:51 -04:00
Supported Rails versions are listed in [`Appraisals` ](Appraisals ). Supported
Ruby versions are listed in [`.travis.yml` ](.travis.yml ).
2014-07-25 16:26:52 -04:00
## Download
2010-06-09 11:42:48 -04:00
2016-12-02 10:25:09 -05:00
Github: http://github.com/thoughtbot/factory_bot_rails
2010-06-09 11:42:48 -04:00
Gem:
2011-07-28 09:46:06 -04:00
2016-12-02 10:25:09 -05:00
$ gem install factory_bot_rails
2010-06-09 11:42:48 -04:00
2014-07-25 16:26:52 -04:00
## Configuration
2010-06-09 11:42:48 -04:00
2018-12-22 16:27:48 -05:00
Add `factory_bot_rails` to your Gemfile in both the test and development groups:
2010-06-09 11:42:48 -04:00
2014-04-16 06:33:02 -04:00
```ruby
2016-07-16 15:02:53 -04:00
group :development, :test do
2016-12-02 10:25:09 -05:00
gem 'factory_bot_rails'
2016-07-16 15:02:53 -04:00
end
2014-04-16 06:33:02 -04:00
```
2010-06-09 11:42:48 -04:00
2018-09-14 15:39:03 -04:00
You may want to configure your test suite to include factory\_bot methods; see
[configuration ](https://github.com/thoughtbot/factory_bot/blob/master/GETTING_STARTED.md#configure-your-test-suite ).
### 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
```
2018-11-21 22:34:18 -05:00
You can configure by adding the following to `config/application.rb` or the
appropriate environment configuration in `config/environments` :
2018-09-14 15:39:03 -04:00
```ruby
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:
```rb
2019-05-15 02:28:43 -04:00
begin
require 'factory_bot_rails'
rescue LoadError
end
2018-09-14 15:39:03 -04:00
class MyEngine < ::Rails::Engine
2019-06-21 10:53:53 -04:00
config.factory_bot.definition_file_paths +=
2019-05-15 02:28:43 -04:00
[File.expand_path('../factories', __FILE__ )] if defined?(FactoryBotRails)
2018-09-14 15:39:03 -04:00
end
```
You can also disable automatic factory definition loading entirely by
using an empty array:
```rb
config.factory_bot.definition_file_paths = []
```
### Generators
2018-11-21 22:34:18 -05:00
Including factory\_bot\_rails in the development group of your Gemfile
2018-09-14 15:39:03 -04:00
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:
2012-11-29 05:46:29 -05:00
2014-04-16 06:33:02 -04:00
```ruby
config.generators do |g|
2016-12-02 10:25:09 -05:00
g.factory_bot false
2014-04-16 06:33:02 -04:00
end
```
2013-02-19 10:41:54 -05:00
2018-09-14 15:39:03 -04:00
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),
2018-11-21 22:34:18 -05:00
in a file matching the name of the table (e.g. `test/factories/users.rb` ).
2018-09-14 15:39:03 -04:00
To generate factories in a different directory, you can use the following
configuration:
2013-02-19 10:41:54 -05:00
2014-04-16 06:33:02 -04:00
```ruby
config.generators do |g|
2016-12-02 10:25:09 -05:00
g.factory_bot dir: 'custom/dir/for/factories'
2014-04-16 06:33:02 -04:00
end
```
2012-11-29 05:46:29 -05:00
2018-09-14 15:39:03 -04:00
Note that factory\_bot\_rails will not automatically load files in custom
2019-03-18 03:44:07 -04:00
locations unless you add them to `config.factory_bot.definition_file_paths` as
2018-09-14 15:39:03 -04:00
well.
The suffix option allows you to customize the name of the generated file with a
suffix:
```ruby
config.generators do |g|
g.factory_bot suffix: "factory"
end
```
2013-02-08 15:27:10 -05:00
2018-09-14 15:39:03 -04:00
This will generate `test/factories/users_factory.rb` instead of
`test/factories/users.rb` .
2014-07-25 19:10:08 -04:00
2018-09-14 15:39:03 -04:00
For even more customization, use the `filename_proc` option:
2012-11-29 05:46:29 -05:00
2018-09-14 15:39:03 -04:00
```ruby
config.generators do |g|
2018-09-23 16:16:15 -04:00
g.factory_bot filename_proc: ->(table_name) { "prefix_#{table_name}_suffix" }
2018-09-14 15:39:03 -04:00
end
```
2015-11-18 03:28:27 -05:00
2018-11-30 22:10:14 -05:00
To override the [default factory template][], define your own template in
2019-01-20 19:27:25 -05:00
`lib/templates/factory_bot/model/factories.erb` . This template will have
2018-11-30 22:10:14 -05:00
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` .
[default factory template]: https://github.com/thoughtbot/factory_bot_rails/tree/master/lib/generators/factory_bot/model/templates/factories.erb
2014-07-25 16:26:52 -04:00
## Contributing
2010-06-09 11:42:48 -04:00
2014-08-06 20:42:20 -04:00
Please see [CONTRIBUTING.md ](CONTRIBUTING.md ).
2010-06-09 11:42:48 -04:00
2020-04-04 10:33:22 -04:00
factory_bot_rails was originally written by Joe Ferris and is maintained by thoughtbot. Many improvements and bugfixes were contributed by the [open source
2018-06-16 09:16:02 -04:00
community](https://github.com/thoughtbot/factory_bot_rails/graphs/contributors).
2011-01-19 13:27:57 -05:00
2014-07-25 16:26:52 -04:00
## License
2020-01-05 18:13:33 -05:00
factory_bot_rails is Copyright © 2008-2020 Joe Ferris and thoughtbot. It is free
2014-07-25 16:26:52 -04:00
software, and may be redistributed under the terms specified in the
2016-04-02 16:05:26 -04:00
[LICENSE ](LICENSE ) file.
2011-01-19 13:27:57 -05:00
2018-06-16 09:16:02 -04:00
## About thoughtbot
2019-12-13 16:09:36 -05:00
![thoughtbot ](https://thoughtbot.com/brand_assets/93:44.svg )
2018-06-16 09:16:02 -04:00
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][community].
We are [available for hire][hire].
2016-12-02 10:25:09 -05:00
[fb]: https://github.com/thoughtbot/factory_bot
[ci]: http://travis-ci.org/thoughtbot/factory_bot_rails?branch=master
2018-06-14 19:01:24 -04:00
[ci-image]: https://secure.travis-ci.org/thoughtbot/factory_bot_rails.svg
2016-12-02 10:25:09 -05:00
[grade]: https://codeclimate.com/github/thoughtbot/factory_bot_rails
2018-06-14 19:01:24 -04:00
[grade-image]: https://codeclimate.com/github/thoughtbot/factory_bot_rails.svg
2018-06-16 09:16:02 -04:00
[community]: https://thoughtbot.com/community?utm_source=github
[hire]: https://thoughtbot.com/hire-us?utm_source=github
2018-06-22 16:12:48 -04:00
[version-image]: https://badge.fury.io/rb/factory_bot_rails.svg
[version]: https://badge.fury.io/rb/factory_bot_rails
2018-08-07 21:26:32 -04:00
[hound-image]: https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg
[hound]: https://houndci.com