How can I run a single test from a rails test suite?
rake test ANYTHING seems to not help.
rake test ANYTHING
Run a test file:
rake test TEST=tests/functional/accounts_test.rb
Run a single test in a test file:
rake test TEST=tests/functional/accounts_test.rb TESTOPTS="-n /paid accounts/"
(From @Puhlze 's comment.)