A Busser runner plugin for Cucumber.
See the Busser and Test Kitchen pages for more details.
Place test files in [COOKBOOK]/test/integration/[SUITE]/cucumber/
cookbook
-- test
-- integration
-- default
-- cucumber
When Test Kitchen runs Busser, it will automatically install this plugin on your server under test.
In some cases, your tests may require some additional setup. This plugin will
run any Gemfile
or setup-recipe.rb
Chef recipe included in the test file
directory. For example, if you need the aruba
and rest-client
gems in
addition to Cucumber itself, place a file in
[COOKBOOK]/test/integration/[SUITE]/cucumber/Gemfile
:
source 'https://rubygems.org'
gem 'cucumber'
gem 'aruba'
gem 'rest_client'
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Ensure any changes are tested and all tests pass (
rake
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
- Author:: Jonathan Hartman (j@p4nt5.com)
Based mostly on work by Adam Jacob on busser-rspec, in turn based on work done by Daisuke Higuchi on busser-serverspec.
Apache 2.0 (see LICENSE).