To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorWorld (or Context)
- Scenarios
-
- access World variable
- different World instances between scenarios
- call function from World
- replace World constructor
- access World variable
-
- Given
- a World variable initialized to 1
- When
- Cucumber executes a scenario that increments the World variable by 1
- Then
- the feature passes
- And
- the World variable should have contained 2 at the end of the scenario
- different World instances between scenarios
-
- Given
- a World variable initialized to 1
- When
- Cucumber executes two scenarios that increment the World variable by 1
- Then
- the feature passes
- And
- the World variable should have contained 2 at the end of the first scenario
- And
- the World variable should have contained 2 at the end of the second scenario
- call function from World
-
- Given
- a World function
- When
- Cucumber executes a scenario that calls the World function
- Then
- the feature passes
- And
- the World function should have been called
- replace World constructor
-
- Given
- a custom World constructor
- And
- a World function
- When
- Cucumber executes a scenario that calls the World function
- Then
- the feature passes
- And
- the World function should have been called
Last published almost 7 years ago by jbpros.