diff options
author | Jared Weyer <v-jaredweyer@microsoft.com> | 2021-12-28 13:46:17 -0800 |
---|---|---|
committer | Jared Weyer <v-jaredweyer@microsoft.com> | 2021-12-28 13:48:10 -0800 |
commit | 3bbf365259fadccefd7892636eaa29c3ce51aa0e (patch) | |
tree | 6e84b7c381417a27a241cda1faefb03f0b610c8d /kitchen-tests/cookbooks | |
parent | 61e1ef15d541d4829c085c3e5126fb7f47811514 (diff) | |
download | chef-3bbf365259fadccefd7892636eaa29c3ce51aa0e.tar.gz |
Added new _homebrew_tap test to the main macos test recipe
Signed-off-by: Jared Weyer <v-jaredweyer@microsoft.com>
Diffstat (limited to 'kitchen-tests/cookbooks')
-rw-r--r-- | kitchen-tests/cookbooks/end_to_end/recipes/_homebrew_tap.rb | 6 | ||||
-rw-r--r-- | kitchen-tests/cookbooks/end_to_end/recipes/macos.rb | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/kitchen-tests/cookbooks/end_to_end/recipes/_homebrew_tap.rb b/kitchen-tests/cookbooks/end_to_end/recipes/_homebrew_tap.rb index 53879954e6..29c5e1e0b9 100644 --- a/kitchen-tests/cookbooks/end_to_end/recipes/_homebrew_tap.rb +++ b/kitchen-tests/cookbooks/end_to_end/recipes/_homebrew_tap.rb @@ -1,5 +1,5 @@ -homebrew_tap 'chef/chef' +homebrew_tap "chef/chef" -homebrew_tap 'chef/chef' do - action :untap +homebrew_tap "chef/chef" do + action :untap end
\ No newline at end of file diff --git a/kitchen-tests/cookbooks/end_to_end/recipes/macos.rb b/kitchen-tests/cookbooks/end_to_end/recipes/macos.rb index b83eb74506..213ef2d516 100644 --- a/kitchen-tests/cookbooks/end_to_end/recipes/macos.rb +++ b/kitchen-tests/cookbooks/end_to_end/recipes/macos.rb @@ -109,3 +109,4 @@ include_recipe "::_macos_userdefaults" include_recipe "::_ohai_hint" include_recipe "::_openssl" include_recipe "::_chef_gem" +include_recipe "::_homebrew_tap" |