Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/laurentbristiel/cucumber_poc

POC of cucumber testing tool
https://github.com/laurentbristiel/cucumber_poc

cucumber ruby testing

Last synced: 21 days ago
JSON representation

POC of cucumber testing tool

Awesome Lists containing this project

README

        

from the root of the project, just launch cucumber and it will execute the tests
```
$ cucumber
Feature: add money to become rich

Scenario Outline: add a little bit of money to an account # features/addMoneyToAccount.feature:3
Given an account that is "" euros balanced # features/step_definitions/addMoneyToAccount.rb:3
When I add "" euros to the account # features/step_definitions/addMoneyToAccount.rb:7
Then the account balance should be "" euros # features/step_definitions/addMoneyToAccount.rb:11

Examples:
| initial | pay | final |
| 10 | 20 | 30 |
| 10 | 30 | 40 |
| 10 | 100 | 110 |

3 scenarios (3 passed)
9 steps (9 passed)
0m0.012s
```