diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-11-18 12:43:20 -0800 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-11-18 12:43:20 -0800 |
commit | 5a2ed2e6876245d021d62b884b1c0083b56921cf (patch) | |
tree | 32a923b699242be62fdee753c807292580098ed6 /spec | |
parent | c8fc5004072d9eaec0801af4707b4d5487402d95 (diff) | |
download | ohai-5a2ed2e6876245d021d62b884b1c0083b56921cf.tar.gz |
Just set the aix platform / platform_family directly
If we're in a collect block for aix then we're on aix.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'spec')
-rw-r--r-- | spec/unit/plugins/aix/platform_spec.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/spec/unit/plugins/aix/platform_spec.rb b/spec/unit/plugins/aix/platform_spec.rb index 99ef56b1..db9a2389 100644 --- a/spec/unit/plugins/aix/platform_spec.rb +++ b/spec/unit/plugins/aix/platform_spec.rb @@ -18,12 +18,11 @@ require "spec_helper" -describe Ohai::System, "Aix plugin platform" do +describe Ohai::System, "AIX plugin platform" do before do @plugin = get_plugin("aix/platform") allow(@plugin).to receive(:collect_os).and_return(:aix) kernel = Mash.new - kernel[:name] = "aix" kernel[:version] = "7" kernel[:release] = "1" allow(@plugin).to receive(:kernel).and_return(kernel) |