Vagrantfile in minitest-chef-handler-0.2.0 vs Vagrantfile in minitest-chef-handler-0.3.0
- old
+ new
@@ -1,3 +1,8 @@
Vagrant::Config.run do |config|
- config.vm.box = "lucid64"
+ config.vm.box = "natty64"
+ config.vm.provision :chef_solo do |chef|
+ chef.cookbooks_path = "examples/cookbooks"
+ chef.add_recipe "chef_handler::minitest"
+ chef.add_recipe "foo"
+ end
end