2012-08-28 71 views
1

我可以rake:modelsRails - 我怎樣才能運行黃瓜測試?

任何選項來運行所有型號要做到這一點,對黃瓜測試,而不是僅僅rake並運行在所有級別的所有測試?

我想:

$ rake spec:cucumber 
rake aborted! 
Don't know how to build task 'spec:cucumber' 
+0

@ janders223有正確的答案。爲了澄清,Rspec與Cucumber無關,這就是爲什麼沒有像rake spec:cucumber這樣的東西。 – MrDanA

回答

11

你應該能夠公正運行rake cucumber

rake -T顯示了快速的輸出:

rake cucumber       # Alias for cucumber:ok 
rake cucumber:all      # Run all features 
rake cucumber:ok      # Run features that should pass 
rake cucumber:rerun     # Record failing features and run only them if any exist 
rake cucumber:wip      # Run features that are being worked on 
+2

只需添加,您也可以不使用耙子就使用'cucumber'腳本。 – MrDanA

+0

非常真實,並且還可以運行'rake cucumber:ok spec'來一起運行所有功能和規格。 – janders223

+0

是的,這也是真的! – MrDanA