diff options
Diffstat (limited to 'kitchen-tests')
-rw-r--r-- | kitchen-tests/cookbooks/audit_test/recipes/include_recipe.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/kitchen-tests/cookbooks/audit_test/recipes/include_recipe.rb b/kitchen-tests/cookbooks/audit_test/recipes/include_recipe.rb new file mode 100644 index 0000000000..00bdd9c9e9 --- /dev/null +++ b/kitchen-tests/cookbooks/audit_test/recipes/include_recipe.rb @@ -0,0 +1,15 @@ +# +# Cookbook Name:: audit_test +# Recipe:: include_recipe +# +# Copyright (c) 2014 The Authors, All Rights Reserved. + +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 + end +end |