Project

General

Profile

« Previous | Next » 

Revision 2a616445

Added by Justin Sherrill almost 10 years ago

Refs #5029 - specify inital org and location

View differences:

modules/stdlib/spec/unit/facter/root_home_spec.rb
it "should return /" do
Facter::Util::Resolution.expects(:exec).with("getent passwd root").returns(root_ent)
Facter::Util::RootHome.get_root_home.should == expected_root_home
expect(Facter::Util::RootHome.get_root_home).to eq(expected_root_home)
end
end
context "linux" do
......
it "should return /root" do
Facter::Util::Resolution.expects(:exec).with("getent passwd root").returns(root_ent)
Facter::Util::RootHome.get_root_home.should == expected_root_home
expect(Facter::Util::RootHome.get_root_home).to eq(expected_root_home)
end
end
context "windows" do
......
Facter::Util::Resolution.expects(:exec).with("getent passwd root").returns(nil)
end
it "should be nil on windows" do
Facter::Util::RootHome.get_root_home.should be_nil
expect(Facter::Util::RootHome.get_root_home).to be_nil
end
end
end
......
it "should return /var/root" do
Facter::Util::Resolution.stubs(:exec).with("dscacheutil -q user -a name root").returns(sample_dscacheutil)
Facter.fact(:root_home).value.should == expected_root_home
expect(Facter.fact(:root_home).value).to eq(expected_root_home)
end
end

Also available in: Unified diff