すべてのモデルを実行できますrake:models
rake
すべてのレベルですべてのテストを実行するだけでなく、キュウリのテストでそれを行うオプションはありますか?
私は試した:
$ rake spec:cucumber
rake aborted!
Don't know how to build task 'spec:cucumber'
すべてのモデルを実行できますrake:models
rake
すべてのレベルですべてのテストを実行するだけでなく、キュウリのテストでそれを行うオプションはありますか?
私は試した:
$ rake spec:cucumber
rake aborted!
Don't know how to build task 'spec:cucumber'
あなたはただ走ることができるはずです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