2

すべてのモデルを実行できますrake:models

rakeすべてのレベルですべてのテストを実行するだけでなく、キュウリのテストでそれを行うオプションはありますか?

私は試した:

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

1 に答える 1

14

あなたはただ走ることができるはずです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
于 2012-08-28T17:31:33.683 に答える