Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/garethr/vagrant-cucumber-host
Vagrant plugin to run cucumber acceptance tests for Vagrant boxes
https://github.com/garethr/vagrant-cucumber-host
Last synced: 3 months ago
JSON representation
Vagrant plugin to run cucumber acceptance tests for Vagrant boxes
- Host: GitHub
- URL: https://github.com/garethr/vagrant-cucumber-host
- Owner: garethr
- License: mit
- Created: 2014-03-07T22:14:10.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-08-24T17:11:55.000Z (over 10 years ago)
- Last Synced: 2024-09-11T01:57:10.936Z (4 months ago)
- Language: Ruby
- Size: 145 KB
- Stars: 10
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
A Vagrant plugin which allows running cucumber tests on the
local host as a provisioner.This could be useful for running acceptance tests for a Vagrant setup,
including for a multibox setup.## Installation
Install this plugin via the `vagrant` command.
vagrant plugin install vagrant-cucumber-host
## Usage
```ruby
Vagrant.require_plugin "vagrant-cucumber-host"Vagrant.configure("2") do |config|
config.vm.box = "precise64"config.vm.provision :cucumber_host do |cucumber|
cucumber.features = []
end
end
```See the examples folder for more.
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request