summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-12-19 20:08:37 -0800
committerGitHub <noreply@github.com>2018-12-19 20:08:37 -0800
commitc86b900bcdc524ba204887509f91153a6634f779 (patch)
tree93ca1c7e8394ac93594c35ddb00daadabf486599 /spec
parente2f8515f9600875be24e7ff6f7add5a353a60894 (diff)
parent0d5a782322b4e510ac161c67fe85d16cc90ba575 (diff)
downloadchef-c86b900bcdc524ba204887509f91153a6634f779.tar.gz
Merge pull request #8072 from chef/minimal_ohai
chef 14: minimal_ohai: Add init_package plugin as a required plugin
Diffstat (limited to 'spec')
-rw-r--r--spec/unit/client_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/client_spec.rb b/spec/unit/client_spec.rb
index 4f9d66d776..acb5fb7997 100644
--- a/spec/unit/client_spec.rb
+++ b/spec/unit/client_spec.rb
@@ -38,7 +38,7 @@ describe Chef::Client do
end
it "runs ohai with only the minimum required plugins" do
- expected_filter = %w{fqdn machinename hostname platform platform_version ohai_time os os_version}
+ expected_filter = %w{fqdn machinename hostname platform platform_version ohai_time os os_version init_package}
expect(ohai_system).to receive(:all_plugins).with(expected_filter)
client.run_ohai
end