summaryrefslogtreecommitdiff
path: root/kitchen-tests/cookbooks/audit_test/recipes/error_duplicate_control_groups.rb
blob: 82b358d4be1a4a2f7525ee3e39b77195cf276d0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
# Cookbook Name:: audit_test
# Recipe:: error_duplicate_control_groups
#
# 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_group "basic control group" do
  it "should pass" do
    expect(2 - 2).to eq(0)
  end
end