Hi! Thanks for visiting my blog. If you've received any value from my content would you mind supporting my new startup by downloading our browser add-on? It's called PriceBlink and makes online shopping a breeze. You can watch it in action here and download it for Chrome, Firefox, IE, or Safari by going to PriceBlink.com. Thank you and I hope you enjoy!

Running a Single Test File in Rails

Nov 11

There are cases where you don’t want to run your entire Rails test suite. From your Rails application directory run the following command:

ruby -I lib:test test/integration/dealer_admin_test.rb

A small but useful tidbit.

One comment

  1. maltin /

    For me on windows, it’s only working with a semicolon and quotes: ruby -I “lib;test” ..

Leave a Reply