Information Technology Reference
In-Depth Information
NOTE
You might be prompted for your administrator/root password when running bundle in-
stall .
kitchen-vagrant is a driver for Test Kitchen that adds support for managing VirtualBox
and VMware virtual machines using Vagrant. Nearly all Test Kitchen functionality is imple-
mented via these drivers, as Test Kitchen is itself is nothing more than a generic framework
for managing environments and running tests. Add-on drivers actually implement functional-
ity. Run bundle install , like kitchen init , suggests installing those extra dependencies:
$ bundle install
Fetching gem metadata from https://rubygems.org/..........
Resolving dependencies...
Using mixlib-shellout (1.4.0)
Using net-ssh (2.9.1)
Using net-scp (1.2.1)
Using safe_yaml (1.0.3)
Using thor (0.19.1)
Using test-kitchen (1.2.1)
Using kitchen-vagrant (0.15.0)
Using bundler (1.5.2)
Your bundle is complete!
Use `bundle show [gemname]` to see where a bundled gem is installed.
Let's go over the directory structure and files kitchen init just created:
.
├── .kitchen
│ └── logs
│ └── kitchen.log
├── .kitchen.yml
├── Gemfile
├── Gemfile.lock
└── test
└── integration
└── default
Search WWH ::




Custom Search