Fix test using File.exists? to use non-deprecated name

This commit is contained in:
Chris Roberts 2022-11-14 10:11:00 -08:00
parent 3c75864ce9
commit 2fe4056a7d

View File

@ -12,7 +12,7 @@ describe Vagrant::Util::InstallZSHShellConfig do
describe "#shell_installed" do
it "should return path to config file if exists" do
allow(File).to receive(:exists?).with(target_file).and_return(true)
allow(File).to receive(:exist?).with(target_file).and_return(true)
expect(subject.shell_installed(home)).to eq(target_file)
end
@ -36,7 +36,7 @@ describe Vagrant::Util::InstallZSHShellConfig do
describe "#install" do
it "installs autocomplete" do
allow(File).to receive(:exists?).with(target_file).and_return(true)
allow(File).to receive(:exist?).with(target_file).and_return(true)
allow(File).to receive(:foreach).with(target_file).and_yield("nothing")
expect(File).to receive(:open).with(target_file, "a")
subject.install(home)
@ -67,4 +67,4 @@ describe Vagrant::Util::InstallCLIAutocomplete do
expect{ subject.install(["oops"]) }.to raise_error(ArgumentError)
end
end
end
end