RSpec Rails
Installation
SKILL.md
RSpec Rails
rspec-rails integrates RSpec with Rails, providing specialized spec types for each Rails component.
Spec Types
| Spec Type | Location | Purpose |
|---|---|---|
| Model | spec/models/ |
ActiveRecord models, validations, associations |
| Request | spec/requests/ |
HTTP requests, full controller + routing |
| System | spec/system/ |
Browser-based end-to-end tests |
| Mailer | spec/mailers/ |
Email content and delivery |
| Job | spec/jobs/ |
Background job behavior |
| View | spec/views/ |
View rendering (less common) |
| Helper | spec/helpers/ |
View helper methods |
| Routing | spec/routing/ |
Route resolution |
| Controller | spec/controllers/ |
Deprecated - use request specs |