diff options
author | Melissa <melissa@puppet.com> | 2018-07-18 08:14:50 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-18 08:14:50 -0700 |
commit | 90fdf1f05e8f165bae7ca54ec024ca5fd7d55636 (patch) | |
tree | 71e02aa514bf677ef4f924f9bafe3a76661d86ec | |
parent | 508b99ed16d6e1714f3a5dded85de3812efc640b (diff) | |
parent | d2c9b0c3ca4f62b62b6679758f9de28d1d697aaa (diff) | |
download | puppet-mailalias_core-90fdf1f05e8f165bae7ca54ec024ca5fd7d55636.tar.gz puppet-mailalias_core-90fdf1f05e8f165bae7ca54ec024ca5fd7d55636.tar.bz2 |
Merge pull request #11 from puppetlabs/install-modules-on
Pass hosts array to install_modules_on
-rw-r--r-- | spec/spec_helper_acceptance.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/spec/spec_helper_acceptance.rb b/spec/spec_helper_acceptance.rb index e7060a0..24d3b9d 100644 --- a/spec/spec_helper_acceptance.rb +++ b/spec/spec_helper_acceptance.rb @@ -17,9 +17,7 @@ RSpec.configure do |c| c.before :suite do unless ENV['BEAKER_provision'] == 'no' run_puppet_install_helper - hosts.each do |host| - install_module_on(host) - end + install_module_on(hosts) install_module_dependencies_on(hosts) end end |