Setup RSpec in Rails
11 March 2022 (Updated 4 February 2023)
Install gem
Add to Gemfile
:
Run:
Generate binstubs:
Delete test/directory
Run installer
Configure spec_helper.rb
Set contents to:
Configure rails_helper.rb
Set contents to:
Configure .rspec
Set contents to:
We want to add the --fail-fast
flag so that we stop running any further tests once a single one fails.
Verify setup
This should run RSpec successfully.
(Optional) Run RSpec tests in pre-commit hook.
See this post. You’ll want to add the following hook:
Tagged:
Rails testing
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment