https://github.com/costajob/gherkin_course
Gherkin crash course code base
https://github.com/costajob/gherkin_course
bdd cucumber gherkin gherkin-course ruby
Last synced: about 1 month ago
JSON representation
Gherkin crash course code base
- Host: GitHub
- URL: https://github.com/costajob/gherkin_course
- Owner: costajob
- Created: 2016-09-08T07:32:31.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-09T15:40:55.000Z (over 8 years ago)
- Last Synced: 2025-02-05T21:29:04.010Z (3 months ago)
- Topics: bdd, cucumber, gherkin, gherkin-course, ruby
- Language: Ruby
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Table of Contents
* [Scope](#scope)
* [Bank Account](#bank-account)
* [Usage](#usage)## Scope
This repository is the companion Ruby code to the [Gherkin crash course](http://www.slideshare.net/MicheleCosta3/gherkin-crash-course) i presented for my team mates.## Bank Account
I created a plain simple bank account class to test balance, deposit, withdraw and PIN reset functionalities.## Usage
Install dependencies by using bundler:
```
bundle install
```Once done run Cucumber specs by:
```
bundle exec cucumber
```Run unit tests by:
```
rake
```