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