puppet-ansible/spec/acceptance/packages_spec.rb
Danilo Ramalho a86dbdb500 Add acceptance tests for puppet-ansible.
Add acceptance tests for puppet-ansible module so that once the module
is applied we check if files were created and packages were installed.

Co-Authored-By: Bruno Tavares <btavare@thoughtworks.com>
Change-Id: Ic569a70737f7e9d0a86c14e1f299b308ab9d3986
2015-09-21 19:27:38 -03:00

8 lines
156 B
Ruby

require 'spec_helper_acceptance'
describe 'required python package' do
describe package('ansible') do
it { should be_installed.by('pip') }
end
end