This post explains how to execute a single unit test (or even a single test method) instead of running the complete unit test suite. In order to run the unit tests of your rails application, basically you have these official possibilities: rake test : runs all unit, functional and integration tests. rake test:units : runs all the unit tests. rake test:functionals : runs all the functional tests. r