summaryrefslogtreecommitdiff
path: root/kitchen-tests/cookbooks/audit_test/recipes/error_orphan_control.rb
blob: 4f2a8e6c553b2f6d6ddf230f84f1dd5b5de015c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# Cookbook Name:: audit_test
# Recipe:: error_orphan_control
#
# Copyright (c) 2014 The Authors, All Rights Reserved.

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

control "orphan control"