summaryrefslogtreecommitdiff
path: root/kitchen-tests/cookbooks/audit_test/recipes/include_recipe.rb
diff options
context:
space:
mode:
Diffstat (limited to 'kitchen-tests/cookbooks/audit_test/recipes/include_recipe.rb')
-rw-r--r--kitchen-tests/cookbooks/audit_test/recipes/include_recipe.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/kitchen-tests/cookbooks/audit_test/recipes/include_recipe.rb b/kitchen-tests/cookbooks/audit_test/recipes/include_recipe.rb
index 00bdd9c9e9..2ead0722e1 100644
--- a/kitchen-tests/cookbooks/audit_test/recipes/include_recipe.rb
+++ b/kitchen-tests/cookbooks/audit_test/recipes/include_recipe.rb
@@ -7,9 +7,11 @@
include_recipe "audit_test::default"
controls "another basic control" do
- it "should also pass" do
- arr = [0, 0]
- arr.delete(0)
- expect( arr ).to be_empty
+ control "math" do
+ it "should also pass" do
+ arr = [0, 0]
+ arr.delete(0)
+ expect( arr ).to be_empty
+ end
end
end