我在我的机器上的其他项目中使用了自动测试。 我现在正在做一个使用rspec的小型ruby项目。
我可以使用rspec spec
运行测试,它们都会运行。
我已经添加了自动测试'到我的Gemfile
和我bundle
' d
我可以运行autotest
,但它不会在spec/
我已添加空.rspec
和.autotest
个文件
我已经尝试了autotest
和autotest-standalone
宝石
我已查看了http://ph7spot.com/musings/getting-started-with-autotest#troubleshooting_autotest_test_detection的所有信息,这些信息很有帮助,但没有解决我的问题。
答案 0 :(得分:2)
原来我需要(并没有)
gem 'rspec'
在我的Gemfile中(当然是bundle
)
我没有意识到这一点,因为我的机器上有来自其他项目的rspec,因此能够手动rspec spec
',我没有意识到我需要明确地列出宝石,即在Gemfile中。
我也证实了:
touch .rspec
创建。 .autotest
文件。