I use RSpec for my Rails 3 tests and try to use Spork.
I followed several tutorials and Spork seems to work without errors, but my tests still take the same amount of time to run (43 seconds) when turning Spork on and off.
How can I understand what is going on?
Gemfile
gem 'spork', '>=0.9.0.rc9'
spec_helper.rb
require 'rubygems' require 'spork' require 'factory_girl' require 'cover_me' Spork.prefork do
When I run β spork to start the server, everything looks fine:
β spork Using RSpec Preloading the Rails Environment Loading Spork.prefork block ... Spork is ready and listens to 8989!
I also have --drb in the .rspec file
source share