summaryrefslogtreecommitdiff
path: root/kitchen-tests/cookbooks/audit_test/recipes/default.rb
blob: 833c12064a5905f4c9606e903a70568111ca2396 (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 (c) 2014 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