We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The default suffixed generator example in https://github.com/thoughtbot/factory_bot_rails states:
config.generators do |g| g.factory_bot suffix: "factory" end
This configuration will result in factories being created with this pattern:
spec/factories/<pluralized_model_name>_factory.rb and we only have support for pluralized model name without suffix.
spec/factories/<pluralized_model_name>_factory.rb
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The default suffixed generator example in https://github.com/thoughtbot/factory_bot_rails states:
This configuration will result in factories being created with this pattern:
spec/factories/<pluralized_model_name>_factory.rb
and we only have support for pluralized model name without suffix.Version
The text was updated successfully, but these errors were encountered: