是否有任何現有的解決方案(最好是一個gem)運行一些rspec specs?rspec規範自動邏輯分組(通過「標籤」)
例如:
rspec . # runs whole test suite
rspec . --keywords=project # runs all specs that have "project" keyword there somewhere
或類似的東西?
是否有任何現有的解決方案(最好是一個gem)運行一些rspec specs?rspec規範自動邏輯分組(通過「標籤」)
例如:
rspec . # runs whole test suite
rspec . --keywords=project # runs all specs that have "project" keyword there somewhere
或類似的東西?
可以通過提供一個鍵值對的描述,上下文或測試,像這樣使用rspec的標籤:
describe "A set of tests", :constraint => 'slow'
describe "Another set of tests", :focus => true
你可以通過執行運行這兩種套:
rspec --tag constraint:slow
rspec --tag focus
我覺得內置的「--example」選項,你想要做什麼:
rspec . --example "project"
這是一個很好的評論,但我想更多的東西LIK e grepping所有規格內容,只運行包含我的關鍵字的規格 – 2011-02-15 13:59:22