7

我在 Ubuntu 12.04 上的 rails 3.2.11 项目上运行了guard-spork。

我从railstutorial.org获得了我的配置。

Spork 启动,然后守卫说找不到 spork 启动,等待 30 秒,然后 60 秒,然后工作。

它可以工作,但每次启动时都会出错。只是想知道我是否做错了什么。

如何删除 Test::Unit 的挂钩?

错误信息:

16:31:58 - INFO - Starting Spork for RSpec, Test::Unit
Using RSpec
Preloading Rails environment
Couldn't find a supported test framework that begins with 'testunit'

Supported test frameworks:
( ) Cucumber
(*) RSpec

Legend: ( ) - not detected in project   (*) - detected
Loading Spork.prefork block...
Rack::File headers parameter replaces cache_control after Rack 1.5.
Spork is ready and listening on 8989!
16:32:28 - ERROR - Could not start Spork server for RSpec, Test::Unit after 30 seconds. I will continue waiting for a further 60 seconds.

16:33:28 - ERROR - Could not start Spork server for RSpec, Test::Unit. Make sure you can use it manually first.
4

3 回答 3

16

或者您可以将test_unit: false选项添加到guard-spork,即在您的Guardfile 中:

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

我的“测试”目录中确实有一些性能测试,因此删除 test/ 并不总是一种选择。

于 2013-04-01T21:18:30.250 回答
14

弄清楚了。. .

只需擦除 rails 应用程序根目录中的测试文件夹

rm -r 测试/

于 2013-02-10T16:11:40.327 回答
1

仅由于应用程序根目录中的 /test 目录而发生此错误。删除 /test 目录,它应该可以解决错误。

于 2013-08-31T06:00:33.103 回答