0
0
mirror of https://github.com/saltstack-formulas/vagrant-formula.git synced 2025-02-17 18:14:26 +01:00
vagrant-formula/test/integration/default/serverspec/vagrant_spec.rb

12 lines
223 B
Ruby
Raw Normal View History

2016-02-03 00:03:11 +01:00
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