I am still continuing the tutorial @ Ruby on Rails Tutorial by Michael Hartl
Last time we have integrated the RSpec and Autotest in Rails 3.
Rails – Integrate Autotest and RSpec in Linux
But it seems that it takes quite long for RSpec to complete the tests. This is because RSpec reloads the entire Rails environment for each run. Spork Test Server helps you preloading the Rails environment which greatly reduces the time for running the test suite.
1. Add the spork gem in the Gemfile Continue reading Rails – Running RSpec with Spork Test Server