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

include_recipe "audit_test::serverspec_collision"

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

include_recipe "audit_test::serverspec_collision"
include_recipe "audit_test::default"