There are a handful of tools that you can use to test your Rails app. These are a couple that we have used at SfG:
This is the testing suite that comes with Rails by default. You can check out the documentation for working with Minitest and Rails here.
This is a testing suite you can add to Rails with this gem. Here are RSpec's official docs
- Here's a detailed introductory tutorial
- Here's an RSpec Tutorial (Don’t write/type anything until you reach “Setting Up Rspec”, then code along)