Schwad / factory_face_rails

Factory Bot ♥ Rails

Home Page:https://thoughtbot.com/services/ruby-on-rails

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

factory_face_rails Build Status Code Climate

factory_face 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.

Rails

factory_face_rails provides Rails integration for factory_face.

Currently, automatic factory definition loading is the only Rails-specific feature.

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

Download

Github: http://github.com/schwad/factory_face_rails

Gem:

$ gem install factory_face_rails

Configuration

Add factory_face_rails to your Gemfile:

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

Generators for factories will automatically substitute fixture (and maybe any other fixture_replacement you set). If you want to disable this feature, add the following to your application.rb file:

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

Default factories directory is test/factories, or spec/factories if test_framework generator is set to :rspec; change this behavior with:

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

If you use factory_face for fixture replacement, ensure that factory_face_rails is available in the development group. If it's not, Rails will generate standard .yml files instead of factory files.

factory_face takes an option suffix: 'some_suffix' to generate factories as modelname_some_suffix.rb.

If you use factory_face for fixture replacement and already have a factories.rb file in the directory that contains your tests, factory_face_rails will insert new factory definitions at the top of factories.rb.

You may need to configure your test suite to include factory_face methods; see configuration.

Contributing

Please see CONTRIBUTING.md.

Credits

factory_face was originally written by Joe Ferris.

thoughtbot

factory_face is maintained and funded by thoughtbot, inc

The names and logos for thoughtbot are trademarks of thoughtbot, inc.

License

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

About

Factory Bot ♥ Rails

https://thoughtbot.com/services/ruby-on-rails

License:MIT License


Languages

Language:Ruby 55.1%Language:Gherkin 43.4%Language:Shell 1.5%