Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hiptest/hps-cucumber-ruby
Hiptest publisher samples with Cucumber/Ruby
https://github.com/hiptest/hps-cucumber-ruby
Last synced: about 2 months ago
JSON representation
Hiptest publisher samples with Cucumber/Ruby
- Host: GitHub
- URL: https://github.com/hiptest/hps-cucumber-ruby
- Owner: hiptest
- Created: 2015-12-11T10:47:49.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-12-29T20:53:11.000Z (almost 3 years ago)
- Last Synced: 2024-10-12T03:15:57.036Z (2 months ago)
- Language: Ruby
- Size: 44.9 KB
- Stars: 2
- Watchers: 10
- Forks: 37
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hps-cucumber-ruby
[![Build Status](https://travis-ci.org/hiptest/hps-cucumber-ruby.svg?branch=master)](https://travis-ci.org/hiptest/hps-cucumber-ruby)Hiptest publisher samples with Cucumber/Ruby
In this repository you'll find tests generated in Cucumber/Ruby format from [Hiptest](https://hiptest.com), using [Hiptest publisher](https://github.com/hiptest/hiptest-publisher).
The goals are:
* to show how tests are exported in Cucumber/Ruby.
* to check exports work out of the box (well, with implemented actionwords)System under test
------------------The SUT is a (not that much) simple coffee machine. You start it, you ask for a coffee and you get it, sometimes. But most of times you have to add water or beans, empty the grounds. You have an automatic expresso machine at work or at home? So you know how it goes :-)
Update tests
-------------To update the tests:
hiptest-publisher -c cucumber.conf --only=features,step_definitions
The tests are generated in the [``features``](https://github.com/hiptest/hps-cucumber-ruby/tree/master/features) directory.
or
bundle exec cucumber --format json --out results.json
Run tests
---------To build the project and run the tests, use the following command:
bundle exec cucumber --format junit --out results
or to obtain json format
bundle exec cucumber --format json --out results.json
The SUT implementation can be seen in [``src/coffee_machine.rb``](https://github.com/hiptest/hps-cucumber-ruby/blob/master/src/coffee_machine.rb)
The test report is generated in the ```results/``` folder.