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

実行したい場合は、1,2,1,2 となります。

しかし、テストを as 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      |

1 のデータのみを実行するには:

$cucumber --tags @ones

または、2 のデータを除外します。

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