summaryrefslogtreecommitdiff
path: root/kitchen-tests/cookbooks/audit_test/recipes/error_duplicate_control_groups.rb
diff options
context:
space:
mode:
Diffstat (limited to 'kitchen-tests/cookbooks/audit_test/recipes/error_duplicate_control_groups.rb')
-rw-r--r--kitchen-tests/cookbooks/audit_test/recipes/error_duplicate_control_groups.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/kitchen-tests/cookbooks/audit_test/recipes/error_duplicate_control_groups.rb b/kitchen-tests/cookbooks/audit_test/recipes/error_duplicate_control_groups.rb
new file mode 100644
index 0000000000..82b358d4be
--- /dev/null
+++ b/kitchen-tests/cookbooks/audit_test/recipes/error_duplicate_control_groups.rb
@@ -0,0 +1,17 @@
+#
+# Cookbook Name:: audit_test
+# Recipe:: error_duplicate_control_groups
+#
+# Copyright (c) 2014 The Authors, All Rights Reserved.
+
+control_group "basic control group" do
+ it "should pass" do
+ expect(2 - 2).to eq(0)
+ end
+end
+
+control_group "basic control group" do
+ it "should pass" do
+ expect(2 - 2).to eq(0)
+ end
+end