
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
8 lines
156 B
Ruby
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
|