2010-01-21 101 views
2

我想排除一個,已經寫入功能時,運行我所有的黃瓜功能。使用黃瓜取消活動功能

爲什麼? 由於該功能已經實現(bdd),但我現在沒有時間實施它,但我不想放鬆它。

任何幫助非常感謝。

代碼示例:

@shallbeexcluded 
Feature: Exclude me 
    In order to learn more 
    As an stack overflow user 
    I want to find more information 

    Scenario: Find what I'm looking for 
    Given I open the Google search page in my browser 
    When I search for "rspec" 
    Then I should see a link to http://rspec.info/ 

回答

7

有一個建在黃瓜標籤:@wip(對進行中的工作,通過看板原則的啓發)

要以正在開發的功能工作(標記@wip):

rake cucumber:wip 

運行其他功能(未標記@wip):

rake cucumber:ok 

這是在http://wiki.github.com/aslakhellesoy/cucumber/cucumber-backgrounder

+0

簡要討論適合我工作。 感謝您提供解決方案和其他文檔的鏈接! – road242