rails-testing-rspec
Installation
SKILL.md
Rails Testing with RSpec
Build comprehensive test suites using RSpec and FactoryBot. This skill covers spec structure, factories, mocking, and testing best practices.
Quick Start
Add to Gemfile:
group :test do
gem 'rspec-rails'
gem 'factory_bot_rails'
gem 'faker'
end
Generate RSpec install:
rails generate rspec:install