diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/spec_helper_acceptance.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/spec_helper_acceptance.rb b/spec/spec_helper_acceptance.rb index 0adde24..e7060a0 100644 --- a/spec/spec_helper_acceptance.rb +++ b/spec/spec_helper_acceptance.rb @@ -17,7 +17,9 @@ RSpec.configure do |c| c.before :suite do unless ENV['BEAKER_provision'] == 'no' run_puppet_install_helper - install_module_on(hosts_as(hosts)) + hosts.each do |host| + install_module_on(host) + end install_module_dependencies_on(hosts) end end |