chefspec 5.2.0 → 5.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +18 -0
  3. data/README.md +3 -3
  4. data/chefspec.gemspec +1 -1
  5. data/examples/bff_package/recipes/install.rb +13 -0
  6. data/examples/bff_package/recipes/purge.rb +13 -0
  7. data/examples/bff_package/recipes/remove.rb +13 -0
  8. data/examples/bff_package/recipes/upgrade.rb +13 -0
  9. data/examples/bff_package/spec/install_spec.rb +23 -0
  10. data/examples/bff_package/spec/purge_spec.rb +19 -0
  11. data/examples/bff_package/spec/remove_spec.rb +19 -0
  12. data/examples/bff_package/spec/upgrade_spec.rb +19 -0
  13. data/examples/homebrew_package/recipes/install.rb +13 -0
  14. data/examples/homebrew_package/recipes/purge.rb +13 -0
  15. data/examples/homebrew_package/recipes/remove.rb +13 -0
  16. data/examples/homebrew_package/recipes/upgrade.rb +13 -0
  17. data/examples/homebrew_package/spec/install_spec.rb +23 -0
  18. data/examples/homebrew_package/spec/purge_spec.rb +19 -0
  19. data/examples/homebrew_package/spec/remove_spec.rb +19 -0
  20. data/examples/homebrew_package/spec/upgrade_spec.rb +19 -0
  21. data/examples/launchd/recipes/create.rb +5 -0
  22. data/examples/launchd/recipes/create_if_missing.rb +3 -0
  23. data/examples/launchd/recipes/delete.rb +3 -0
  24. data/examples/launchd/recipes/disable.rb +3 -0
  25. data/examples/launchd/recipes/enable.rb +3 -0
  26. data/examples/launchd/spec/create_if_missing_spec.rb +10 -0
  27. data/examples/launchd/spec/create_spec.rb +14 -0
  28. data/examples/launchd/spec/delete_spec.rb +10 -0
  29. data/examples/launchd/spec/disable_spec.rb +10 -0
  30. data/examples/launchd/spec/enable_spec.rb +10 -0
  31. data/examples/openbsd_package/recipes/install.rb +13 -0
  32. data/examples/openbsd_package/recipes/purge.rb +13 -0
  33. data/examples/openbsd_package/recipes/remove.rb +13 -0
  34. data/examples/openbsd_package/recipes/upgrade.rb +13 -0
  35. data/examples/openbsd_package/spec/install_spec.rb +23 -0
  36. data/examples/openbsd_package/spec/purge_spec.rb +19 -0
  37. data/examples/openbsd_package/spec/remove_spec.rb +19 -0
  38. data/examples/openbsd_package/spec/upgrade_spec.rb +19 -0
  39. data/examples/osx_profile/recipes/install.rb +8 -0
  40. data/examples/osx_profile/recipes/remove.rb +8 -0
  41. data/examples/osx_profile/spec/install_spec.rb +15 -0
  42. data/examples/osx_profile/spec/remove_spec.rb +13 -0
  43. data/examples/paludis_package/recipes/install.rb +13 -0
  44. data/examples/paludis_package/recipes/purge.rb +13 -0
  45. data/examples/paludis_package/recipes/remove.rb +13 -0
  46. data/examples/paludis_package/recipes/upgrade.rb +13 -0
  47. data/examples/paludis_package/spec/install_spec.rb +23 -0
  48. data/examples/paludis_package/spec/purge_spec.rb +19 -0
  49. data/examples/paludis_package/spec/remove_spec.rb +19 -0
  50. data/examples/paludis_package/spec/upgrade_spec.rb +19 -0
  51. data/examples/ruby_block/recipes/create.rb +8 -0
  52. data/examples/ruby_block/spec/create_spec.rb +13 -0
  53. data/examples/script/recipes/run_ksh.rb +13 -0
  54. data/examples/script/spec/run_ksh_spec.rb +23 -0
  55. data/examples/solaris_package/recipes/upgrade.rb +13 -0
  56. data/examples/solaris_package/spec/upgrade_spec.rb +19 -0
  57. data/examples/systemd_unit/recipes/create.rb +3 -0
  58. data/examples/systemd_unit/recipes/delete.rb +3 -0
  59. data/examples/systemd_unit/recipes/disable.rb +3 -0
  60. data/examples/systemd_unit/recipes/enable.rb +3 -0
  61. data/examples/systemd_unit/recipes/mask.rb +3 -0
  62. data/examples/systemd_unit/recipes/reload_or_restart.rb +3 -0
  63. data/examples/systemd_unit/recipes/reload_or_try_restart.rb +3 -0
  64. data/examples/systemd_unit/recipes/restart.rb +3 -0
  65. data/examples/systemd_unit/recipes/start.rb +3 -0
  66. data/examples/systemd_unit/recipes/stop.rb +3 -0
  67. data/examples/systemd_unit/recipes/try_restart.rb +3 -0
  68. data/examples/systemd_unit/recipes/unmask.rb +3 -0
  69. data/examples/systemd_unit/spec/create_spec.rb +10 -0
  70. data/examples/systemd_unit/spec/delete_spec.rb +10 -0
  71. data/examples/systemd_unit/spec/disable_spec.rb +10 -0
  72. data/examples/systemd_unit/spec/enable_spec.rb +10 -0
  73. data/examples/systemd_unit/spec/mask_spec.rb +10 -0
  74. data/examples/systemd_unit/spec/reload_or_restart_spec.rb +10 -0
  75. data/examples/systemd_unit/spec/reload_or_try_restart_spec.rb +10 -0
  76. data/examples/systemd_unit/spec/restart_spec.rb +10 -0
  77. data/examples/systemd_unit/spec/start_spec.rb +10 -0
  78. data/examples/systemd_unit/spec/stop_spec.rb +10 -0
  79. data/examples/systemd_unit/spec/try_restart_spec.rb +10 -0
  80. data/examples/systemd_unit/spec/unmask_spec.rb +10 -0
  81. data/examples/zypper_package/recipes/install.rb +13 -0
  82. data/examples/zypper_package/recipes/purge.rb +13 -0
  83. data/examples/zypper_package/recipes/remove.rb +13 -0
  84. data/examples/zypper_package/recipes/upgrade.rb +13 -0
  85. data/examples/zypper_package/spec/install_spec.rb +23 -0
  86. data/examples/zypper_package/spec/purge_spec.rb +19 -0
  87. data/examples/zypper_package/spec/remove_spec.rb +19 -0
  88. data/examples/zypper_package/spec/upgrade_spec.rb +19 -0
  89. data/features/attributes.feature +1 -1
  90. data/features/bff_package.feature +12 -0
  91. data/features/chocolatey_package.feature +1 -0
  92. data/features/compile_time.feature +1 -1
  93. data/features/dsc_resource.feature +1 -0
  94. data/features/homebrew_package.feature +12 -0
  95. data/features/launchd.feature +23 -0
  96. data/features/openbsd_package.feature +14 -0
  97. data/features/osx_profile.feature +19 -0
  98. data/features/paludis_package.feature +14 -0
  99. data/features/roles.feature +1 -1
  100. data/features/ruby_block.feature +1 -0
  101. data/features/script.feature +8 -0
  102. data/features/solaris_package.feature +1 -0
  103. data/features/systemd_unit.feature +33 -0
  104. data/features/windows_package.feature +1 -0
  105. data/features/zypper_package.feature +18 -0
  106. data/lib/chefspec/api.rb +8 -0
  107. data/lib/chefspec/api/bff_package.rb +154 -0
  108. data/lib/chefspec/api/homebrew_package.rb +154 -0
  109. data/lib/chefspec/api/launchd.rb +151 -0
  110. data/lib/chefspec/api/openbsd_package.rb +155 -0
  111. data/lib/chefspec/api/osx_profile.rb +63 -0
  112. data/lib/chefspec/api/paludis_package.rb +155 -0
  113. data/lib/chefspec/api/ruby_block.rb +31 -0
  114. data/lib/chefspec/api/script.rb +39 -0
  115. data/lib/chefspec/api/solaris_package.rb +37 -0
  116. data/lib/chefspec/api/systemd_unit.rb +353 -0
  117. data/lib/chefspec/api/zypper_package.rb +154 -0
  118. data/lib/chefspec/version.rb +1 -1
  119. metadata +111 -3
@@ -0,0 +1,3 @@
1
+ systemd_unit 'explicit_action' do
2
+ action :delete
3
+ end
@@ -0,0 +1,3 @@
1
+ systemd_unit 'explicit_action' do
2
+ action :disable
3
+ end
@@ -0,0 +1,3 @@
1
+ systemd_unit 'explicit_action' do
2
+ action :enable
3
+ end
@@ -0,0 +1,3 @@
1
+ systemd_unit 'explicit_action' do
2
+ action :mask
3
+ end
@@ -0,0 +1,3 @@
1
+ systemd_unit 'explicit_action' do
2
+ action :reload_or_restart
3
+ end
@@ -0,0 +1,3 @@
1
+ systemd_unit 'explicit_action' do
2
+ action :reload_or_try_restart
3
+ end
@@ -0,0 +1,3 @@
1
+ systemd_unit 'explicit_action' do
2
+ action :restart
3
+ end
@@ -0,0 +1,3 @@
1
+ systemd_unit 'explicit_action' do
2
+ action :start
3
+ end
@@ -0,0 +1,3 @@
1
+ systemd_unit 'explicit_action' do
2
+ action :stop
3
+ end
@@ -0,0 +1,3 @@
1
+ systemd_unit 'explicit_action' do
2
+ action :try_restart
3
+ end
@@ -0,0 +1,3 @@
1
+ systemd_unit 'explicit_action' do
2
+ action :unmask
3
+ end
@@ -0,0 +1,10 @@
1
+ require 'chefspec'
2
+
3
+ describe 'systemd_unit::create' do
4
+ let(:chef_run) { ChefSpec::ServerRunner.new(platform: 'ubuntu', version: '16.04').converge(described_recipe) }
5
+
6
+ it 'creates a systemd unit with an explicit action' do
7
+ expect(chef_run).to create_systemd_unit('explicit_action')
8
+ expect(chef_run).to_not create_systemd_unit('not_explicit_action')
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ require 'chefspec'
2
+
3
+ describe 'systemd_unit::delete' do
4
+ let(:chef_run) { ChefSpec::ServerRunner.new(platform: 'ubuntu', version: '16.04').converge(described_recipe) }
5
+
6
+ it 'deletes a systemd_unit with an explicit action' do
7
+ expect(chef_run).to delete_systemd_unit('explicit_action')
8
+ expect(chef_run).to_not delete_systemd_unit('not_explicit_action')
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ require 'chefspec'
2
+
3
+ describe 'systemd_unit::disable' do
4
+ let(:chef_run) { ChefSpec::ServerRunner.new(platform: 'ubuntu', version: '16.04').converge(described_recipe) }
5
+
6
+ it 'disables a systemd unit with an explicit action' do
7
+ expect(chef_run).to disable_systemd_unit('explicit_action')
8
+ expect(chef_run).to_not disable_systemd_unit('not_explicit_action')
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ require 'chefspec'
2
+
3
+ describe 'systemd_unit::enable' do
4
+ let(:chef_run) { ChefSpec::ServerRunner.new(platform: 'ubuntu', version: '16.04').converge(described_recipe) }
5
+
6
+ it 'enables a systemd unit with an explicit action' do
7
+ expect(chef_run).to enable_systemd_unit('explicit_action')
8
+ expect(chef_run).to_not enable_systemd_unit('not_explicit_action')
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ require 'chefspec'
2
+
3
+ describe 'systemd_unit::mask' do
4
+ let(:chef_run) { ChefSpec::ServerRunner.new(platform: 'ubuntu', version: '16.04').converge(described_recipe) }
5
+
6
+ it 'masks a systemd unit with an explicit action' do
7
+ expect(chef_run).to mask_systemd_unit('explicit_action')
8
+ expect(chef_run).to_not mask_systemd_unit('not_explicit_action')
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ require 'chefspec'
2
+
3
+ describe 'systemd_unit::reload_or_restart' do
4
+ let(:chef_run) { ChefSpec::ServerRunner.new(platform: 'ubuntu', version: '16.04').converge(described_recipe) }
5
+
6
+ it 'reloads or restarts a systemd_unit daemon with an explicit action' do
7
+ expect(chef_run).to reload_or_restart_systemd_unit('explicit_action')
8
+ expect(chef_run).to_not reload_or_restart_systemd_unit('not_explicit_action')
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ require 'chefspec'
2
+
3
+ describe 'systemd_unit::reload_or_try_restart' do
4
+ let(:chef_run) { ChefSpec::ServerRunner.new(platform: 'ubuntu', version: '16.04').converge(described_recipe) }
5
+
6
+ it 'reloads or tries to restart a systemd_unit daemon with an explicit action' do
7
+ expect(chef_run).to reload_or_try_restart_systemd_unit('explicit_action')
8
+ expect(chef_run).to_not reload_or_try_restart_systemd_unit('not_explicit_action')
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ require 'chefspec'
2
+
3
+ describe 'systemd_unit::restart' do
4
+ let(:chef_run) { ChefSpec::ServerRunner.new(platform: 'ubuntu', version: '16.04').converge(described_recipe) }
5
+
6
+ it 'restarts a systemd_unit daemon with an explicit action' do
7
+ expect(chef_run).to restart_systemd_unit('explicit_action')
8
+ expect(chef_run).to_not restart_systemd_unit('not_explicit_action')
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ require 'chefspec'
2
+
3
+ describe 'systemd_unit::start' do
4
+ let(:chef_run) { ChefSpec::ServerRunner.new(platform: 'ubuntu', version: '16.04').converge(described_recipe) }
5
+
6
+ it 'starts a systemd_unit daemon with an explicit action' do
7
+ expect(chef_run).to start_systemd_unit('explicit_action')
8
+ expect(chef_run).to_not start_systemd_unit('not_explicit_action')
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ require 'chefspec'
2
+
3
+ describe 'systemd_unit::stop' do
4
+ let(:chef_run) { ChefSpec::ServerRunner.new(platform: 'ubuntu', version: '16.04').converge(described_recipe) }
5
+
6
+ it 'stops a systemd_unit daemon with an explicit action' do
7
+ expect(chef_run).to stop_systemd_unit('explicit_action')
8
+ expect(chef_run).to_not stop_systemd_unit('not_explicit_action')
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ require 'chefspec'
2
+
3
+ describe 'systemd_unit::try_restart' do
4
+ let(:chef_run) { ChefSpec::ServerRunner.new(platform: 'ubuntu', version: '16.04').converge(described_recipe) }
5
+
6
+ it 'tries to restart a systemd_unit daemon with an explicit action' do
7
+ expect(chef_run).to try_restart_systemd_unit('explicit_action')
8
+ expect(chef_run).to_not try_restart_systemd_unit('not_explicit_action')
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ require 'chefspec'
2
+
3
+ describe 'systemd_unit::unmask' do
4
+ let(:chef_run) { ChefSpec::ServerRunner.new(platform: 'ubuntu', version: '16.04').converge(described_recipe) }
5
+
6
+ it 'unmasks a systemd_unit daemon with an explicit action' do
7
+ expect(chef_run).to unmask_systemd_unit('explicit_action')
8
+ expect(chef_run).to_not unmask_systemd_unit('not_explicit_action')
9
+ end
10
+ end
@@ -0,0 +1,13 @@
1
+ zypper_package 'default_action'
2
+
3
+ zypper_package 'explicit_action' do
4
+ action :install
5
+ end
6
+
7
+ zypper_package 'with_attributes' do
8
+ version '1.0.0'
9
+ end
10
+
11
+ zypper_package 'specifying the identity attribute' do
12
+ package_name 'identity_attribute'
13
+ end
@@ -0,0 +1,13 @@
1
+ zypper_package 'explicit_action' do
2
+ action :purge
3
+ end
4
+
5
+ zypper_package 'with_attributes' do
6
+ version '1.0.0'
7
+ action :purge
8
+ end
9
+
10
+ zypper_package 'specifying the identity attribute' do
11
+ package_name 'identity_attribute'
12
+ action :purge
13
+ end
@@ -0,0 +1,13 @@
1
+ zypper_package 'explicit_action' do
2
+ action :remove
3
+ end
4
+
5
+ zypper_package 'with_attributes' do
6
+ version '1.0.0'
7
+ action :remove
8
+ end
9
+
10
+ zypper_package 'specifying the identity attribute' do
11
+ package_name 'identity_attribute'
12
+ action :remove
13
+ end
@@ -0,0 +1,13 @@
1
+ zypper_package 'explicit_action' do
2
+ action :upgrade
3
+ end
4
+
5
+ zypper_package 'with_attributes' do
6
+ version '1.0.0'
7
+ action :upgrade
8
+ end
9
+
10
+ zypper_package 'specifying the identity attribute' do
11
+ package_name 'identity_attribute'
12
+ action :upgrade
13
+ end
@@ -0,0 +1,23 @@
1
+ require 'chefspec'
2
+
3
+ describe 'zypper_package::install' do
4
+ let(:chef_run) { ChefSpec::SoloRunner.converge(described_recipe) }
5
+
6
+ it 'installs a zypper_package with the default action' do
7
+ expect(chef_run).to install_zypper_package('default_action')
8
+ expect(chef_run).to_not install_zypper_package('not_default_action')
9
+ end
10
+
11
+ it 'installs a zypper_package with an explicit action' do
12
+ expect(chef_run).to install_zypper_package('explicit_action')
13
+ end
14
+
15
+ it 'installs a zypper_package with attributes' do
16
+ expect(chef_run).to install_zypper_package('with_attributes').with(version: '1.0.0')
17
+ expect(chef_run).to_not install_zypper_package('with_attributes').with(version: '1.2.3')
18
+ end
19
+
20
+ it 'installs a zypper_package when specifying the identity attribute' do
21
+ expect(chef_run).to install_zypper_package('identity_attribute')
22
+ end
23
+ end
@@ -0,0 +1,19 @@
1
+ require 'chefspec'
2
+
3
+ describe 'zypper_package::purge' do
4
+ let(:chef_run) { ChefSpec::SoloRunner.converge(described_recipe) }
5
+
6
+ it 'purges a zypper_package with an explicit action' do
7
+ expect(chef_run).to purge_zypper_package('explicit_action')
8
+ expect(chef_run).to_not purge_zypper_package('not_explicit_action')
9
+ end
10
+
11
+ it 'purges a zypper_package with attributes' do
12
+ expect(chef_run).to purge_zypper_package('with_attributes').with(version: '1.0.0')
13
+ expect(chef_run).to_not purge_zypper_package('with_attributes').with(version: '1.2.3')
14
+ end
15
+
16
+ it 'purges a zypper_package when specifying the identity attribute' do
17
+ expect(chef_run).to purge_zypper_package('identity_attribute')
18
+ end
19
+ end
@@ -0,0 +1,19 @@
1
+ require 'chefspec'
2
+
3
+ describe 'zypper_package::remove' do
4
+ let(:chef_run) { ChefSpec::SoloRunner.converge(described_recipe) }
5
+
6
+ it 'removes a zypper_package with an explicit action' do
7
+ expect(chef_run).to remove_zypper_package('explicit_action')
8
+ expect(chef_run).to_not remove_zypper_package('not_explicit_action')
9
+ end
10
+
11
+ it 'removes a zypper_package with attributes' do
12
+ expect(chef_run).to remove_zypper_package('with_attributes').with(version: '1.0.0')
13
+ expect(chef_run).to_not remove_zypper_package('with_attributes').with(version: '1.2.3')
14
+ end
15
+
16
+ it 'removes a zypper_package when specifying the identity attribute' do
17
+ expect(chef_run).to remove_zypper_package('identity_attribute')
18
+ end
19
+ end
@@ -0,0 +1,19 @@
1
+ require 'chefspec'
2
+
3
+ describe 'zypper_package::upgrade' do
4
+ let(:chef_run) { ChefSpec::SoloRunner.converge(described_recipe) }
5
+
6
+ it 'upgrades a zypper_package with an explicit action' do
7
+ expect(chef_run).to upgrade_zypper_package('explicit_action')
8
+ expect(chef_run).to_not upgrade_zypper_package('not_explicit_action')
9
+ end
10
+
11
+ it 'upgrades a zypper_package with attributes' do
12
+ expect(chef_run).to upgrade_zypper_package('with_attributes').with(version: '1.0.0')
13
+ expect(chef_run).to_not upgrade_zypper_package('with_attributes').with(version: '1.2.3')
14
+ end
15
+
16
+ it 'upgrades a zypper_package when specifying the identity attribute' do
17
+ expect(chef_run).to upgrade_zypper_package('identity_attribute')
18
+ end
19
+ end
@@ -1,4 +1,4 @@
1
- Feature: Overridding attributes in the Runner
1
+ Feature: Overriding attributes in the Runner
2
2
  Background:
3
3
  * I am using the "attributes" cookbook
4
4
 
@@ -0,0 +1,12 @@
1
+ Feature: The bff_package matcher
2
+ Background:
3
+ * I am using the "bff_package" cookbook
4
+
5
+ Scenario Outline: Running specs
6
+ * I successfully run `rspec spec/<Matcher>_spec.rb`
7
+ * the output should contain "0 failures"
8
+ Examples:
9
+ | Matcher |
10
+ | install |
11
+ | purge |
12
+ | remove |
@@ -5,6 +5,7 @@
5
5
  @not_chef_12_4_3
6
6
  @not_chef_12_5_1
7
7
  @not_chef_12_6_0
8
+
8
9
  Feature: The chocolatey_package matcher
9
10
  Background:
10
11
  * I am using the "chocolatey_package" cookbook
@@ -1,4 +1,4 @@
1
- Feature: Overridding compile_time in the Runner
1
+ Feature: Overriding compile_time in the Runner
2
2
  Background:
3
3
  * I am using the "compile_time" cookbook
4
4
 
@@ -1,5 +1,6 @@
1
1
  @not_chef_12_0_3
2
2
  @not_chef_12_1_2
3
+
3
4
  Feature: The dsc_resource matcher
4
5
  Background:
5
6
  * I am using the "dsc_resource" cookbook
@@ -0,0 +1,12 @@
1
+ Feature: The homebrew_package matcher
2
+ Background:
3
+ * I am using the "homebrew_package" cookbook
4
+
5
+ Scenario Outline: Running specs
6
+ * I successfully run `rspec spec/<Matcher>_spec.rb`
7
+ * the output should contain "0 failures"
8
+ Examples:
9
+ | Matcher |
10
+ | install |
11
+ | purge |
12
+ | remove |
@@ -0,0 +1,23 @@
1
+ @not_chef_12_0_3
2
+ @not_chef_12_1_2
3
+ @not_chef_12_2_1
4
+ @not_chef_12_3_0
5
+ @not_chef_12_4_3
6
+ @not_chef_12_5_1
7
+ @not_chef_12_6_0
8
+ @not_chef_12_7_2
9
+
10
+ Feature: The launchd matcher
11
+ Background:
12
+ * I am using the "launchd" cookbook
13
+
14
+ Scenario Outline: Running specs
15
+ * I successfully run `rspec spec/<Matcher>_spec.rb`
16
+ * the output should contain "0 failures"
17
+ Examples:
18
+ | Matcher |
19
+ | create |
20
+ | create_if_missing |
21
+ | delete |
22
+ | disable |
23
+ | enable |
@@ -0,0 +1,14 @@
1
+ @not_chef_12_0_3
2
+
3
+ Feature: The openbsd_package matcher
4
+ Background:
5
+ * I am using the "openbsd_package" cookbook
6
+
7
+ Scenario Outline: Running specs
8
+ * I successfully run `rspec spec/<Matcher>_spec.rb`
9
+ * the output should contain "0 failures"
10
+ Examples:
11
+ | Matcher |
12
+ | install |
13
+ | purge |
14
+ | remove |
@@ -0,0 +1,19 @@
1
+ @not_chef_12_0_3
2
+ @not_chef_12_1_2
3
+ @not_chef_12_2_1
4
+ @not_chef_12_3_0
5
+ @not_chef_12_4_3
6
+ @not_chef_12_5_1
7
+ @not_chef_12_6_0
8
+
9
+ Feature: The osx_profile matcher
10
+ Background:
11
+ * I am using the "osx_profile" cookbook
12
+
13
+ Scenario Outline: Running specs
14
+ * I successfully run `rspec spec/<Matcher>_spec.rb`
15
+ * the output should contain "0 failures"
16
+ Examples:
17
+ | Matcher |
18
+ | install |
19
+ | remove |