Different types of Rails tests
11 March 2022 (Updated 11 March 2022)
Feature tests
A feature test is the most high-level test and typically involves testing a feature of your app through a web browser via Capybara.
See this post for more details.
Example: test that users can register
Model tests
Model tests test Active Record models. Common things to test for include:
- Correct validation rules are enforced.
- Associations are setup properly.
- Custom methods of model work as intended.
Example: test validations, association, and custom method
Request specs
TODO
Tagged:
Rails testing
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment