summaryrefslogtreecommitdiff
path: root/spec/unit/client_spec.rb
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-11-22 14:54:06 -0800
committerTim Smith <tsmith@chef.io>2018-11-22 19:52:36 -0800
commitfbd9fafa2436fab673078c957cd912eae4185763 (patch)
tree6174385f05d5b2a9f5a184bb8c9c1839c8039a5b /spec/unit/client_spec.rb
parentcfad5b36e65d34145638d3f1b17c848eb90a0215 (diff)
downloadchef-init_package_plugin.tar.gz
minimal_ohai: Add init_package plugin as a required plugininit_package_plugin
This is a pretty critical bit of data and we're using it for decisions in the timezone resource now. Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'spec/unit/client_spec.rb')
-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