initial import

This commit is contained in:
Tobias Wallura
2016-02-03 00:03:11 +01:00
commit 06ec94a862
11 changed files with 107 additions and 0 deletions
@@ -0,0 +1,11 @@
require 'serverspec'
set :backend, :exec
describe command("which vagrant") do
its(:exit_status) { should eq 0 }
end
describe command("vagrant plugin list | grep vagrant-aws") do
its(:exit_status) { should eq 0 }
end