While working through the expertly written "The Ruby on Rails Tutorial" by Michael Hartl, I ran into a small configuration issue. The issue I experienced was with Guard not properly starting a Spork server from the command line. My system was able to run Rspec, Spork, and Guard with no errors as long as Guard didn't try to load Spork. Here is what my terminal output looks like.

josh@Josh-eOS:~/Web/Freelance/qstate$ guard
15:28:49 - INFO - Guard is using Libnotify to send notifications.
15:28:49 - INFO - Guard is using TerminalTitle to send notifications.
15:28:49 - INFO - Starting Spork for RSpec, Test::Unit
Couldn't find a supported test framework that begins with 'testunit'

Supported test frameworks:
( ) Cucumber
(*) RSpec

Legend: ( ) - not detected in project   (*) - detected
Using RSpec, Rails
Preloading Rails environment
Loading Spork.prefork block...
Spork is ready and listening on 8989!
15:29:19 - ERROR - Could not start Spork server for RSpec, Test::Unit after 30 seconds. I will continue waiting for a further 60 seconds.

I'm positive that others have experienced this same error. The hint for the fix comes from the lines 15:28:49 - INFO - Starting Spork for RSpec, Test::Unit. Couldn't find a supported test framework that begins with 'testunit'. This means that Guard was attempting to run tests using the testunit framework (which was not installed). To fix this add :test_unit => false to your Guardfile's Spork block. It should look something like this.

guard 'spork', :test_unit => false, :cucumber_env => { 'RAILS_ENV' => 'test' }, :rspec_env => { 'RAILS_ENV' => 'test' } do
...

Additional Issues

For troubleshooting surrounding Guard and Spork, take a look at the github page for guard-spork. Here are a couple of the most basic things you can check.

  • If you can start Spork manually but get the following error message when using Guard::Spork:
  • Starting Spork for RSpec ERROR: Could not start Spork for RSpec/Cucumber. Make sure you can use it manually first.
  • Try to increase the value of the :wait => 60 option before any further investigation. It's possible that this error is the result of an unnecessary /test directory in the root of your application. Removing the /test directory entirely may resolve this error.
« Previous Post
5 Ways to improve your development workflow
Next Post »
How to configure Sublime Text for PSR Standards

Join the conversation

comments powered by Disqus