我有一个 rspec 场景,如下所示:
scenario "some description of the scenario", :js => true, :slow => true, :wip => true do
sleep 60
...
但我想sleep
根据场景的标记有条件地调用,例如:
scenario "some description of the scenario", :js => true, :slow => true, :wip => true do
sleep 60 if tags[:slow] && !tags[:wip]
...
我会很感激任何帮助。