1
Given "step" like "description"                              
  Example:                                     
  | step | description |                
  |  1   | first       |                 
  |  2   | second      |           
  |  1   | third       |            
  |  2   | fourth      |

如果我想运行它将作为 1,2,1,2。

但我需要我的测试应该以 1 运行。不需要从 2 获取数据。

任何的想法?

提前致谢。

4

1 回答 1

0

您可以标记示例并部分运行它们,如下所示:

Given "step" like "description"  

    @ones                            
  Examples:                                     
  | step | description |                
  |  1   | first       |                 
  |  1   | third       |            

    @twos                            
  Examples:                                     
  | step | description |                
  |  2   | second      |           
  |  2   | fourth      |

只运行 1s 的数据:

$cucumber --tags @ones

或者用 2s 排除数据:

$cucumber --tags ~@twos
于 2012-12-20T11:46:56.370 回答