2011-02-15 39 views

回答

9

可以通過提供一個鍵值對的描述,上下文或測試,像這樣使用rspec的標籤:

describe "A set of tests", :constraint => 'slow' 
describe "Another set of tests", :focus => true 

你可以通過執行運行這兩種套:

rspec --tag constraint:slow 
rspec --tag focus 
+0

這是一個很好的評論,但我想更多的東西LIK e grepping所有規格內容,只運行包含我的關鍵字的規格 – 2011-02-15 13:59:22

4

我覺得內置的「--example」選項,你想要做什麼:

rspec . --example "project"