diff options
author | Michael Hashizume <michael.hashizume@puppet.com> | 2023-02-14 14:05:16 -0800 |
---|---|---|
committer | Michael Hashizume <michael.hashizume@puppet.com> | 2023-02-14 14:05:16 -0800 |
commit | 148316e2f33fd2ffcc5b8a7d35bc5840cf1d44d4 (patch) | |
tree | beab7edbef817914902fdf8a961bcdb08b23fd8f /spec | |
parent | 2a37a145415cbfe4aec61283f036840c6de91eb3 (diff) | |
download | puppet-sshkeys_core-148316e2f33fd2ffcc5b8a7d35bc5840cf1d44d4.tar.gz puppet-sshkeys_core-148316e2f33fd2ffcc5b8a7d35bc5840cf1d44d4.tar.bz2 |
(MODULES-11371) Add Vox Beaker gem
In 057188e, we updated the module according to PDK template 7.2.1,
which updated puppetlabs_spec_helper. The updated version of
puppetlabs_spec_helper removed the Beaker rake task, which we use
for acceptance testing.
This commit adds the voxpupuli-acceptance gem, which re-adds the
Beaker rake task.
Diffstat (limited to 'spec')
-rw-r--r-- | spec/spec_helper_acceptance.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/spec_helper_acceptance.rb b/spec/spec_helper_acceptance.rb index cb4ccb2..c9d0c8c 100644 --- a/spec/spec_helper_acceptance.rb +++ b/spec/spec_helper_acceptance.rb @@ -1,6 +1,7 @@ require 'beaker-rspec' require 'beaker/module_install_helper' require 'beaker/puppet_install_helper' +require 'voxpupuli/acceptance/spec_helper_acceptance' def beaker_opts { debug: true, trace: true, expect_failures: true, acceptable_exit_codes: (0...256) } |