Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/laurentbristiel/cucumber_poc
- Owner: laurentbristiel
- Created: 2014-03-06T13:41:43.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-03-06T13:45:58.000Z (almost 11 years ago)
- Last Synced: 2024-11-01T22:34:34.210Z (2 months ago)
- Topics: cucumber, ruby, testing
- Language: Ruby
- Homepage:
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 richScenario 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:11Examples:
| initial | pay | final |
| 10 | 20 | 30 |
| 10 | 30 | 40 |
| 10 | 100 | 110 |3 scenarios (3 passed)
9 steps (9 passed)
0m0.012s
```