diff options
author | Jon Fautley <jon@dead.li> | 2015-08-27 14:53:02 +0100 |
---|---|---|
committer | Jon Fautley <jon@dead.li> | 2015-08-28 15:21:13 +0100 |
commit | 6c2a003f2139a482f92f245ce1d49830be13c5f1 (patch) | |
tree | 552a7c02b4615a7e2f772e70628628330e7ccda4 /spec/unit/facter | |
parent | b10978703a5e4f07f240c509a3cf881210fbd5c5 (diff) |
(MODULES-2478) Support root_home fact on AIX through "lsuser" command
Squashed, and amended test for comment lines.
Diffstat (limited to 'spec/unit/facter')
-rwxr-xr-x | spec/unit/facter/root_home_spec.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/unit/facter/root_home_spec.rb b/spec/unit/facter/root_home_spec.rb index 98fe141..ac5160a 100755 --- a/spec/unit/facter/root_home_spec.rb +++ b/spec/unit/facter/root_home_spec.rb @@ -49,4 +49,17 @@ describe 'root_home', :type => :fact do end end + context "aix" do + before do + Facter.fact(:kernel).stubs(:value).returns("AIX") + Facter.fact(:osfamily).stubs(:value).returns("AIX") + end + let(:expected_root_home) { "/root" } + sample_lsuser = File.read(fixtures('lsuser','root')) + + it "should return /root" do + Facter::Util::Resolution.stubs(:exec).with("lsuser -C -a home root").returns(sample_lsuser) + expect(Facter.fact(:root_home).value).to eq(expected_root_home) + end + end end |