summaryrefslogtreecommitdiff
path: root/kitchen-tests/cookbooks/audit_test/recipes/default.rb
blob: 886c2cd0acbc6eff24d16f7292cdaa953b84961b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# Cookbook Name:: audit_test
# Recipe:: default
#
# Copyright 2014-2016, The Authors, All Rights Reserved.

control_group "basic control group" do
  control "basic math" do
    it "should pass" do
      expect(2 - 2).to eq(0)
    end
  end
end

control_group "control group without top level control" do
  it "should pass" do
    expect(2 - 2).to eq(0)
  end
end

control_group "control group with empty control" do
  control "empty"
end

control_group "empty control group with block" do
end