michaelp0730
5/18/2015 - 7:42 PM

Shows how to run a specific test by passing TESTOPTS

Rails

Running Tests with Test Opts:
bundle exec rake test TEST=test/integration/users_login_test.rb \
TESTOPTS="--name test_login_with_valid_information"


Run Model Tests only:
bundle exec rake test:models


Run Integration Tests only:
bundle exec rake test:integration