summaryrefslogtreecommitdiff
path: root/spec/unit/resource/build_essential_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/resource/build_essential_spec.rb')
-rw-r--r--spec/unit/resource/build_essential_spec.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/spec/unit/resource/build_essential_spec.rb b/spec/unit/resource/build_essential_spec.rb
index 547b4dfc3c..f366ceb557 100644
--- a/spec/unit/resource/build_essential_spec.rb
+++ b/spec/unit/resource/build_essential_spec.rb
@@ -57,18 +57,6 @@ describe Chef::Resource::BuildEssential do
end
end
- describe "#xcode_cli_installed?" do
- it "returns true if the CLI is in the InstallHistory plist" do
- allow(::File).to receive(:open).with("/Library/Receipts/InstallHistory.plist", "r").and_return(::File.join(::File.dirname(__FILE__), "data/InstallHistory_with_CLT.plist"))
- expect(provider.xcode_cli_installed?).to eql(true)
- end
-
- it "returns false if the pkgutil doesn't list the package" do
- allow(::File).to receive(:open).with("/Library/Receipts/InstallHistory.plist", "r").and_return(::File.join(::File.dirname(__FILE__), "data/InstallHistory_without_CLT.plist"))
- expect(provider.xcode_cli_installed?).to eql(false)
- end
- end
-
describe "#xcode_cli_package_label" do
it "returns a package name on macOS < 10.15" do
allow(provider).to receive(:shell_out).with("softwareupdate", "--list").and_return(softwareupdate_pre_catalina)